Skip to content

Instantly share code, notes, and snippets.

@varemenos
Created April 20, 2013 05:22
Show Gist options
  • Save varemenos/5424852 to your computer and use it in GitHub Desktop.
Save varemenos/5424852 to your computer and use it in GitHub Desktop.
JavaScript - Escape HTML special characters
// source: http://stackoverflow.com/a/9251169/649239
var escape = document.createElement('textarea');
function escapeHTML(html) {
escape.innerHTML = html;
return escape.innerHTML;
}
function unescapeHTML(html) {
escape.innerHTML = html;
return escape.value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment