Skip to content

Instantly share code, notes, and snippets.

@riodw
Last active April 25, 2017 15:33
Show Gist options
  • Save riodw/00de754354d44616234b6ee33cefcc8e to your computer and use it in GitHub Desktop.
Save riodw/00de754354d44616234b6ee33cefcc8e to your computer and use it in GitHub Desktop.
<!-- Useing the HTML "template" tag -->
<html>
<head>
<title>Use HTML Template tag</title>
</head>
<body>
<template id="t">
<div>Hello World!</div>
</template>
<script>
var node = document.importNode(document.querySelector('#t').content, true);
document.body.appendChild(node);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment