Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>HTML template example</title>
</head>
  
<body>
  <template id="mytemplate">
     <img src="" alt="great image">
     <div class="comment">hello</div>
  </template> 
  
  Click several times on the button (look at the JavaScript tab) :<p>
  <button onclick="instantiate();">Instanciate (clone) the template</button><br>
</body>
</html>
 
// Instanciate the template
var t = document.querySelector('#mytemplate');
// Create a root node under our H1 title
var host = document.querySelector('#myWidget');
const shadowRoot = host.attachShadow({mode: 'open'});
shadowRoot.appendChild(t.content.cloneNode(true));
Output

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

Dismiss x
public
Bin info
micbuffapro
0viewers