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>HTML template example</title>
  <!-- polyfill for web components -->
  <script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/0.7.20/webcomponents.js"></script>
</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();">Instantiate the template</button><br>
  
</body>
</html>
 
function instantiate() {
var t = document.querySelector('#mytemplate');
  
// Populate the src at runtime.
t.content.querySelector('img').src = 'http://webcomponents.github.io/img/logo.svg';
  // clone template content
var clone = document.importNode(t.content, true);
  
  // add it to the body of the HTML document
document.body.appendChild(clone); 
}
Output

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

Dismiss x
public
Bin info
micbuffapro
0viewers