i'm reading the book "Web Components mit Polymer" and tried the following Code from the Book:
<!doctype html>
<html>
<body>
<template id="tpl">
<h1 class="title"></h1>
<div class="body"></div>
</template>
<script>
var tplContent = document.getElementById("tpl").content;
var node = tplContent.importNode(true);
node.querySelector("h1").textContent = "Hallo Welt";
node.querySelector("div").textContent = "Ich komme aus einem Template";
document.body.appendChild(node);
</script>
</body>
</html>
But i just get stopped in the second JS line with the error:
Uncaught TypeError: tplContent.importNode is not a function
I use Google Chrome version 63.0.3239.84 on Ubuntu. Can someone help me with this oder?
Regards, Artur
importNode
should be called ondocument
, not an element in the document.From MDN:
Additional information on using
<template>
anddocument.importNode()
here.