Skip to content

Instantly share code, notes, and snippets.

@h4
Last active September 29, 2017 09:48
Show Gist options
  • Save h4/cbfa367ae33326352eca00a753b332c1 to your computer and use it in GitHub Desktop.
Save h4/cbfa367ae33326352eca00a753b332c1 to your computer and use it in GitHub Desktop.
const templateList = document.querySelectorAll(`template`);
const central = document.querySelector(`.central`);
const templateShow = function (templateNumber) {
const newNode = templateList[templateNumber].content.cloneNode(true);
central.innerHTML = ``;
central.replaceChild(newNode, oldNode);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment