Skip to content

Instantly share code, notes, and snippets.

@A1rPun
Last active November 16, 2015 23:03
Show Gist options
  • Save A1rPun/20f1649b7c3f9c69716a to your computer and use it in GitHub Desktop.
Save A1rPun/20f1649b7c3f9c69716a to your computer and use it in GitHub Desktop.
Encode/Decode XML meta characters
function htmlDecode(s) {
var el = document.createElement("div");
el.innerHTML = s;
return el.textContent;
}
function htmlEncode(s) {
var el = document.createElement("div");
el.textContent = s;
return el.innerHTML;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment