Skip to content

Instantly share code, notes, and snippets.

@paulund
Created October 7, 2013 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save paulund/6867068 to your computer and use it in GitHub Desktop.
Save paulund/6867068 to your computer and use it in GitHub Desktop.
Apply PHP htmlentities in JS.
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