CustomElementRegistry
The CustomElementRegistry
interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements
property.
Methods
CustomElementRegistry.define()
- Defines a new custom element.
CustomElementRegistry.get()
- Returns the constuctor for the named custom element, or
undefined
if the custom element is not defined. CustomElementRegistry.whenDefined()
- Returns an empty
promise
that resolves when a custom element becomes defined with the given name. If such a custom element is already defined, the returned promise is immediately fulfilled.
Examples
The following code is taken from our word-count-web-component example (see it live also). Note how we use the CustomElementRegistry.define()
method to define the custom element after creating its class.
// Create a class for the element
class WordCount extends HTMLParagraphElement {
constructor() {
// Always call super first in constructor
super();
// count words in element's parent element
var wcParent = this.parentNode;
function countWords(node){
var text = node.innerText || node.textContent
return text.split(/\s+/g).length;
}
var count = 'Words: ' + countWords(wcParent);
// Create a shadow root
var shadow = this.attachShadow({mode: 'open'});
// Create text node and add word count to it
var text = document.createElement('span');
text.textContent = count;
// Append it to the shadow root
shadow.appendChild(text);
// Update count when element content changes
setInterval(function() {
var count = 'Words: ' + countWords(wcParent);
text.textContent = count;
}, 200)
}
}
// Define the new element
customElements.define('word-count', WordCount, { extends: 'p' });
Specifications
|
Desktop |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
Basic support
|
54 |
No
- No
- In Development
|
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 |
41 |
10.1 |
Customized built-in element support
|
66 |
No |
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 |
No |
define
|
66
- 66
- Support for 'Customized built-in elements' as well.
- 54
- Support for 'Autonomous custom elements' only.
|
No
- No
- In Development
|
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'
|
get
|
66
- 66
- Support for 'Customized built-in elements' as well.
- 54
- Support for 'Autonomous custom elements' only.
|
No
- No
- In Development
|
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'
|
upgrade
|
68 |
? |
? |
? |
55 |
? |
whenDefined
|
66
- 66
- Support for 'Customized built-in elements' as well.
- 54
- Support for 'Autonomous custom elements' only.
|
No
- No
- In Development
|
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
|
54 |
54 |
No
- No
- In Development
|
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.
|
41 |
10.1 |
6.0 |
Customized built-in element support
|
66 |
66 |
No |
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 |
No |
No |
define
|
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
- In Development
|
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.
|
get
|
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
- In Development
|
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.
|
upgrade
|
68 |
68 |
? |
? |
55 |
? |
? |
whenDefined
|
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
- In Development
|
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.
|