Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Shadow DOM example</title>
  <!-- polyfill for web components -->
  <script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.0.2/webcomponents-bundle.js"></script>
</head>
<body>
  <div>Hello this is not rendered!</div>
  <script>
    // the div is the Shadow Host. Its content will not be rendered
    var host = document.querySelector('div');
  
    // Create the shadow ROOT, the root node of the shadow DOM
    // using mode:open makes it available, mode:close would return null
    const shadowRoot = host.attachShadow({mode: 'open'});
  
    // insert something into the shadow DOM, this will be rendered
    shadowRoot.innerHTML = '<h1>Hello Shadow DOM</h1>'; // Could also use appendChild().
</script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
micbuffapro
0viewers