Skip to content

Instantly share code, notes, and snippets.

@benrowe
Created December 10, 2015 22:03
Show Gist options
  • Save benrowe/20eec449ee1087a9e8b3 to your computer and use it in GitHub Desktop.
Save benrowe/20eec449ee1087a9e8b3 to your computer and use it in GitHub Desktop.
htmlentities for javascript
function htmlEntities(value)
{
return value.
replace(/&/g, '&').
replace(/</g, '&lt;').
replace(/>/g, '&gt;').
replace(/"/g, '&quot;');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment