W3cubDocs

/DOM

CustomElementRegistry.whenDefined

The whenDefined() method of the CustomElementRegistry interface returns a Promise that resolves when the named element is defined.

Syntax

Promise<> customElements.whenDefined(name);

Parameters

name
Custom element name.

Return value

A Promise that resolves to undefined when the custom element is defined. If the custom element is already defined, the promise is resolved immediately.

Exceptions

Exception Description
SyntaxError If the provided name is not a valid custom element name, the promise rejects with a SyntaxError.

Examples

This example uses whenDefined() to detect when the custom elements that make up a menu are defined. The menu displays placeholder content until the actual menu content is ready to display.

<nav id="menu-container">
  <div class="menu-placeholder">Loading...</div>
  <nav-menu>
    <menu-item>Item 1</menu-item>
    <menu-item>Item 2</menu-item>
     ...
    <menu-item>Item N</menu-item>
  </nav-menu>
</nav>
const container = document.getElementById('menu-container');
const placeholder = container.querySelector('.menu-placeholder');
// Fetch all the children of menu that are not yet defined.
const undefinedElements = container.querySelectorAll(':not(:defined)');

const promises = [...undefinedElements].map(
  button => customElements.whenDefined(button.localName)
);

// Wait for all the children to be upgraded, 
// then remove the placeholder.
await Promise.all(promises);
container.removeChild(placeholder);

Specifications

Specification Status Comment
HTML Living Standard
The definition of 'customElements.whenDefined()' in that specification.
Living Standard Initial definition.

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 66
66
Support for 'Customized built-in elements' as well.
54
Support for 'Autonomous custom elements' only.
No
No
Under consideration
63
63
59
Disabled
Disabled From version 59: this feature is behind the dom.webcomponents.customelements.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
? — 59
Disabled
Disabled Until version 59 (exclusive): this feature is behind the dom.webcomponents.enabled preference (needs to be set to true) and the dom.webcomponents.customelements.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
No 53
53
Support for 'Customized built-in elements' as well.
41
Support for 'Autonomous custom elements' only.
10.1
10.1
Supports 'Autonomous custom elements' but not 'Customized built-in elements'
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 66
66
Support for 'Customized built-in elements' as well.
54
Support for 'Autonomous custom elements' only.
66
66
Support for 'Customized built-in elements' as well.
54
Support for 'Autonomous custom elements' only.
No
No
Under consideration
63
63
59
Disabled
Disabled From version 59: this feature is behind the dom.webcomponents.customelements.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
? — 59
Disabled
Disabled Until version 59 (exclusive): this feature is behind the dom.webcomponents.enabled preference (needs to be set to true) and the dom.webcomponents.customelements.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
53
53
Support for 'Customized built-in elements' as well.
41
Support for 'Autonomous custom elements' only.
10.1
10.1
Supports 'Autonomous custom elements' but not 'Customized built-in elements'
6.0
6.0
Support for 'Autonomous custom elements' only.

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/whenDefined