Skip to content

Instantly share code, notes, and snippets.

@jsguy
Created August 9, 2017 05:59
Show Gist options
  • Save jsguy/eaf523fb8336e4a1f939f10259e8d4d4 to your computer and use it in GitHub Desktop.
Save jsguy/eaf523fb8336e4a1f939f10259e8d4d4 to your computer and use it in GitHub Desktop.
function htmlDecode(input){
var e = document.createElement('div');
e.innerHTML = input;
return e.childNodes[0].nodeValue;
}
function HtmlEncode(s)
{
var el = document.createElement("div");
el.innerText = el.textContent = s;
s = el.innerHTML;
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment