Skip to content

Instantly share code, notes, and snippets.

@Victa
Created July 8, 2011 07:48
Show Gist options
  • Save Victa/1071334 to your computer and use it in GitHub Desktop.
Save Victa/1071334 to your computer and use it in GitHub Desktop.
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