Skip to content

Instantly share code, notes, and snippets.

@alimd
Last active December 30, 2019 13:39
Show Gist options
  • Save alimd/6093934 to your computer and use it in GitHub Desktop.
Save alimd/6093934 to your computer and use it in GitHub Desktop.
Easy method for convert HTML Entities with javascript
var esc = document.createElement('textarea');
function escapeHTML(html) {
esc.innerHTML = html;
return esc.innerHTML;
}
function unescapeHTML(html) {
esc.innerHTML = html;
return esc.value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment