Skip to content

Instantly share code, notes, and snippets.

@benjamincharity
Created February 14, 2014 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjamincharity/9002211 to your computer and use it in GitHub Desktop.
Save benjamincharity/9002211 to your computer and use it in GitHub Desktop.
Strip html entities with Javascript
// http://css-tricks.com/snippets/javascript/htmlentities-for-javascript/
function htmlEntities(str) {
return String(str).replace(/&/g, '&amp;').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