Skip to content

Instantly share code, notes, and snippets.

@zhuzhuaicoding
Created May 4, 2014 02:04
Show Gist options
  • Save zhuzhuaicoding/11509538 to your computer and use it in GitHub Desktop.
Save zhuzhuaicoding/11509538 to your computer and use it in GitHub Desktop.
escapeHTML: function (a) {
var b = document.createElement("div"), c = document.createTextNode(a);
return b.appendChild(c), b.innerHTML
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment