Skip to content

Instantly share code, notes, and snippets.

@wiyoe
Last active January 4, 2018 11:19
Show Gist options
  • Select an option

  • Save wiyoe/e313281cc2149b12e50a674283f93b62 to your computer and use it in GitHub Desktop.

Select an option

Save wiyoe/e313281cc2149b12e50a674283f93b62 to your computer and use it in GitHub Desktop.
Javascript htmlspecialchars.
function escapeHtml(text) {
var map = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#039;'
};
return text.replace(/[&<>"']/g, function(m) { return map[m]; });
}
//http://jsfiddle.net/TheSharpieOne/uPw2U/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment