Include

<wa-include> Stable 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.

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.

<wa-include src="https://shoelace.style/assets/examples/include.html"></wa-include>

Examples

Link to This Section

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="https://shoelace.style/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>

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.

Events

Link to This Section

Learn more about events.

Need a hand? Report a bug Ask for help
    No results
    Navigate Enter Select Esc Close