Skip to content

Instantly share code, notes, and snippets.

@hctilg
Created July 29, 2024 14:49
Show Gist options
  • Save hctilg/549095625fcc5cfa2c0ab806621ca54e to your computer and use it in GitHub Desktop.
Save hctilg/549095625fcc5cfa2c0ab806621ca54e to your computer and use it in GitHub Desktop.
create Element From HTML using JavaScript
/**
* @param {String} HTML representing any number of sibling elements
* @return {NodeList}
*/
const createElementFromHTML = (htmlString = '') => {
var template = document.createElement('template');
template.innerHTML = htmlString;
return template.content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment