Baseline Widely available
The customElements
read-only property of the Window
interface returns a reference to the CustomElementRegistry
object, which can be used to register new custom elements and get information about previously registered custom elements.
The most common example you'll see of this property being used is to get access to the CustomElementRegistry.define()
method to define and register a new custom element, e.g.:
let customElementRegistry = window.customElements;
customElementRegistry.define("my-custom-element", MyCustomElement);
However, it is usually shortened to something like the following:
customElements.define(
"element-details",
class extends HTMLElement {
constructor() {
super();
const template = document.getElementById(
"element-details-template",
).content;
const shadowRoot = this.attachShadow({ mode: "open" }).appendChild(
template.cloneNode(true),
);
}
},
);
See our web-components-examples repo for more usage examples.
Specifications Browser compatibilityRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3