Skip to content

Instantly share code, notes, and snippets.

@cladley
Created November 14, 2018 17:35
Show Gist options
  • Save cladley/a9b2045e9ad677d1358fcdc5a8d8a1aa to your computer and use it in GitHub Desktop.
Save cladley/a9b2045e9ad677d1358fcdc5a8d8a1aa to your computer and use it in GitHub Desktop.
// Its like $('<h1>hello</h1>') in jquery
var parseHTML = function(str) {
var tmp = document.implementation.createHTMLDocument();
tmp.body.innerHTML = str;
return tmp.body.children;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment