Skip to content

Instantly share code, notes, and snippets.

@vincentorback
Last active April 13, 2020 18:39
Show Gist options
  • Save vincentorback/e6123e3e5a1e59618adf to your computer and use it in GitHub Desktop.
Save vincentorback/e6123e3e5a1e59618adf to your computer and use it in GitHub Desktop.
Creates DOM-elements from a string
function stringToElements (string) {
const div = document.createElement('div')
div.innerHTML = string
if (div.childNodes.length > 1) {
return div.childNodes
}
return div.firstChild
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment