Skip to content

Instantly share code, notes, and snippets.

@SmartFinn
Created November 8, 2022 15:28
Show Gist options
  • Save SmartFinn/f0624045d68d286b36fbc8f28a9e16e5 to your computer and use it in GitHub Desktop.
Save SmartFinn/f0624045d68d286b36fbc8f28a9e16e5 to your computer and use it in GitHub Desktop.
create HTML template from Javascript
function createHtmlTemplate(html) {
const template = document.createElement('template');
template.innerHTML = html.trim();
return template.content.firstElementChild;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment