Skip to content

Instantly share code, notes, and snippets.

@fazlurr
Last active May 9, 2019 03:59
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 fazlurr/0b759eba87e2f51cafeea80c9d6d3375 to your computer and use it in GitHub Desktop.
Save fazlurr/0b759eba87e2f51cafeea80c9d6d3375 to your computer and use it in GitHub Desktop.
var checkHTML = function(html) {
var doc = document.createElement('div');
doc.innerHTML = html;
return ( doc.innerHTML === html );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment