shadow root vs. host

The attachShadow() method receives a mode that can be 'open' or 'closed'. 👉parameters for element.attachShadow().

  • 'open': can access the Shadow DOM (elem.shadowRoot) from the main context.

  • 'closed': you can’t. (elem.shadowRoot == null)

// attach a shadow DOM to element
let root = host.attachShadow({mode: 'open'});
// ⭐️ root.host === host
// ⭐️ host.shadowRoot === root

Last updated

Was this helpful?