Created
February 21, 2018 14:45
-
-
Save sz332/6b2ffa2062ca31105e1248432c3b39d7 to your computer and use it in GitHub Desktop.
HTML Templates
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
<html> | |
<body> | |
<template id="my-template"> | |
<h1>Hello world from template!</h1> | |
</template> | |
<div id="parent"> | |
</div> | |
<script> | |
let template = document.getElementById("my-template").content.cloneNode(true); | |
document.getElementById("parent").appendChild(template); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment