Last active
April 25, 2017 15:33
-
-
Save riodw/00de754354d44616234b6ee33cefcc8e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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