Skip to content

Instantly share code, notes, and snippets.

@luokebi
Last active December 23, 2015 07:49
Show Gist options
  • Save luokebi/6603755 to your computer and use it in GitHub Desktop.
Save luokebi/6603755 to your computer and use it in GitHub Desktop.
HTML to Dom
function Html2Dom(str) {
var tempDiv = document.createElement('div');
tempDiv.innerHTML = str;
var dom = tempDiv.childNodes[0];
return dom;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment