Font Awesome Build Awesome
Try SSR Server-side rendering (SSR) generates component HTML on the server before the page loads, improving SEO and initial load time. Use the switch to see Web Awesome components render with and without SSR.
Search this website ⌘KCtrl+K Light Dark System Docs Select Color Scheme Default Awesome Shoelace Active Brutalist Glossy Matter Mellow Playful Premium Tailspin Docs Select Theme View Project on GitHub Star Project on GitHub
Start Components Docs Help
Login Log into your account
Web Awesome Font Awesome Build Awesome
Search this site… /
Try SSR Server-side rendering (SSR) generates component HTML on the server before the page loads, improving SEO and initial load time. Use the switch to see Web Awesome components render with and without SSR.
Light Dark System Docs Select Color Scheme Default Awesome Shoelace Active Brutalist Glossy Matter Mellow Playful Premium Tailspin Docs Select Theme

Getting Started

  • Installation
  • Usage
  • Forms
  • Localization
  • Frameworks
  • Using with AI
  • Figma Design Kit ProThis requires access to Web Awesome Pro
  • Server Rendering

Resources

  • Accessibility
  • Browser Support
  • Contributing
  • Patterns ProPatterns require access to Web Awesome Pro
  • Migrating from Shoelace
  • Visual Tests
  • Changelog
  • Help & Support

Theming & Utilities

  • Overview
  • Built-in Themes
  • Color Palettes
  • Design Tokens
  • Customizing & Theming
  • CSS Utilities

Actions

  • Button
  • Button Group
  • Copy Button
  • Dropdown
    • Dropdown Item

Forms

  • Checkbox
  • Checkbox Group
  • Color Picker
  • Combobox ProThis requires access to Web Awesome Pro
  • Date Input ProThis requires access to Web Awesome Pro
  • Date Picker ProThis requires access to Web Awesome Pro
  • File Input ProThis requires access to Web Awesome Pro
  • Input
  • Known Date
  • Number Input
  • OTP Input
  • Radio Group
    • Radio
  • Rating
  • Select
    • Option
  • Slider
  • Switch
  • Textarea
  • Time Input

Layout

  • Accordion
    • Accordion Item
  • Card
  • Details
  • Dialog
  • Divider
  • Drawer
  • Page
  • Scroller
  • Split Panel

Navigation

  • Breadcrumb
    • Breadcrumb Item
  • Pagination
  • Tab Group
    • Tab
    • Tab Panel
  • Tree
    • Tree Item

Feedback

  • Badge
  • Callout
  • Progress Bar
  • Progress Ring
  • Skeleton
  • Spinner
  • Tag
  • Toast
    • Toast Item
  • Tooltip

Media

  • Animated Image
  • Avatar
  • Carousel
    • Carousel Item
  • Comparison
  • Icon
  • Markdown
  • QR Code
  • Video ProThis requires access to Web Awesome Pro
  • Video Playlist ProThis requires access to Web Awesome Pro
  • Zoomable Frame

Data Viz ProThis requires access to Web Awesome Pro

  • Bar Chart
  • Bubble Chart
  • Data Grid
  • Doughnut Chart
  • Line Chart
  • Pie Chart
  • Polar Area Chart
  • Radar Chart
  • Scatter Chart
  • Sparkline
  • Advanced Usage

Helpers

  • Animation
  • Format Bytes
  • Format Date
  • Format Number
  • Include
  • Intersection Observer
  • Mutation Observer
  • Popover
  • Popup
  • Random Content
  • Relative Time
  • Resize Observer

Include

  • Examples
  • Including Part of a File
  • Including a Template
  • Listening for Events
  • API
  • Importing
  • Attributes & Properties
  • Events
  • SSR
On This Page...
  • Examples
  • Including Part of a File
  • Including a Template
  • Listening for Events
  • API
  • Importing
  • Attributes & Properties
  • Events
  • SSR

Include

<wa-include>
Stable Helpers Since 2.0

Fetches an external HTML file and embeds its contents inline on the page. Useful for reusing shared markup like headers, footers, and partials across multiple pages.

<wa-include src="/assets/examples/include.html"></wa-include>

Included files are asynchronously requested using window.fetch(). Requests are cached, so the same file can be included multiple times, but only one request will be made.

The included content will be inserted into the <wa-include> element's default slot so it can be easily accessed and styled through the light DOM.

Included markup is inserted into the page as-is, and scripts run when allow-scripts is set. Including untrusted content can lead to XSS attacks.

Examples

Link to This Section

Including Part of a File

Link to This Section

To include just one section of a file instead of the whole thing, add the target element's id as a hash to the src. Only the matching element's content is included, the rest of the file is ignored.

If the file loads but the id isn't found, the wa-include-error event is emitted.

<wa-include src="/assets/examples/include.html#callout-fragment"></wa-include>

Including a Template

Link to This Section

The same #id syntax also works against the current page, which is handy for reusing markup you've defined once. It pairs especially well with a <template>, whose content stays hidden until it's included.

You get what's inside the target, not the target element itself, either the children of a regular element, or the contents of a <template>. The original stays in place, so you can include it any number of times.

<template id="greeting">
  <wa-callout variant="brand">
    <wa-icon slot="icon" name="hand-wave"></wa-icon>
    Hello from a template!
  </wa-callout>
</template>

<wa-include src="#greeting"></wa-include>

Listening for Events

Link to This Section

When an include file loads successfully, the wa-load event will be emitted. You can listen for this event to add custom loading logic to your includes.

If the request fails, the wa-include-error event will be emitted. In this case, event.detail.status will contain the resulting HTTP status code of the request, e.g. 404 (not found).

<wa-include src="/assets/examples/include.html"></wa-include>

<script>
  const include = document.querySelector('wa-include');

  include.addEventListener('wa-load', event => {
    if (event.eventPhase === Event.AT_TARGET) {
      console.log('Success');
    }
  });

  include.addEventListener('wa-include-error', event => {
    if (event.eventPhase === Event.AT_TARGET) {
      console.log('Error', event.detail.status);
    }
  });
</script>

API

Link to This Section

Importing

Link to This Section

If you're using the autoloader or a hosted project, components load on demand — no manual import needed. To cherry-pick a component manually, use one of the following snippets.

CDN npm Self-Hosted React

Import this component directly from the CDN:

import 'https://ka-f.webawesome.com/[email protected]/components/include/include.js';

After installing Web Awesome via npm, import this component:

import '@awesome.me/webawesome/dist/components/include/include.js';

If you're self-hosting Web Awesome, import this component from your server:

import './webawesome/dist/components/include/include.js';

To import this component for React 18 or below, use the following code:

import WaInclude from '@awesome.me/webawesome/dist/react/include/index.js';

Attributes & Properties

Link to This Section

Learn more about attributes and properties.

Name Description Reflects
allowScripts
allow-scripts
Allows included scripts to be executed. Be sure you trust the content you are including as it will be executed as code and can result in XSS attacks.
Type boolean
Default false
mode
mode
The fetch mode to use.
Type 'cors' | 'no-cors' | 'same-origin'
Default 'cors'
src
src
The location of the content to include. This can be a URL to an HTML file, a same-page reference to an element's id (e.g. #my-id), or a URL with a fragment that targets an element's id within the fetched file (e.g. /partials.html#my-id). When targeting an element by id, its content is cloned. If the target is a <template>, its child nodes are cloned. Be sure you trust the content you are including as it will be executed as code and can result in XSS attacks.
Type string

Events

Link to This Section

Learn more about events.

Name Description
wa-include-error Emitted when the included file fails to load due to an error.
wa-load Emitted when the included file is loaded.

SSR

Link to This Section

Learn more about Server-Side Rendering (SSR).

<wa-include> fetches its content asynchronously (like <wa-icon>), so the rendered output isn't available during SSR.

Need a hand? Report a bug Ask for help
Go Make Something Awesome
Version 3.11.0 © Fonticons, Inc.
  • Terms
  • Privacy
  • Refunds
  • Core License
  • Pro License

Quick Links

  • Components
  • CSS Utilities
  • Theming
  • Using with AI
  • Changelog
  • Help & Support

Recent Searches

    D'oh! No results for “”

    Suggest on GitHub Ask on Discord
    Navigate Select
    Close Esc

    We Have Cookies…

    We use cookies to make webawesome.com work better by storing limited information about your usage.

    We value your privacy, so we won't use them for evil or ask you to join the dark side.

    Customize
    Necessary Only Accept All
    Strictly Necessary
    Required to make the site function correctly — cannot be turned off
    Functionality Analytics
    Cancel Confirm Cookie Choices