Skip to content

Instantly share code, notes, and snippets.

@danilowoz
Created February 24, 2017 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danilowoz/dbd6924472521516086fc926dc0a2994 to your computer and use it in GitHub Desktop.
Save danilowoz/dbd6924472521516086fc926dc0a2994 to your computer and use it in GitHub Desktop.
Convert String to Dom element
function createNode( html ) {
return new DOMParser().parseFromString( html, "text/html" ).body.firstChild
}
var foo = createNode("<p>Texto<span>Olá</span></p>");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment