Skip to content

Instantly share code, notes, and snippets.

@fvosberg
Created October 8, 2014 10:29
Show Gist options
  • Save fvosberg/c41ad554de3f44e81676 to your computer and use it in GitHub Desktop.
Save fvosberg/c41ad554de3f44e81676 to your computer and use it in GitHub Desktop.
Javascript html special chars
function escapeHtml(text) {
var map = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#039;'
};
return text.replace(/[&<>"']/g, function(m) { return map[m]; });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment