Skip to content

Instantly share code, notes, and snippets.

@jesusgoku
Created March 25, 2015 14:19
Show Gist options
  • Save jesusgoku/6ff87d67bf8f9fce503f to your computer and use it in GitHub Desktop.
Save jesusgoku/6ff87d67bf8f9fce503f to your computer and use it in GitHub Desktop.
Unescape HTML from Javascript
(function (document) {
var Utility = function(){};
utility.prototype.htmlDecode = function (html) {
var e = document.createElement('div');
e.innerHTML = html;
return 0 < e.nodeChilds.length ? e.nodeChilds[0].nodeValue : null;
};
return Utility;
})(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment