Skip to content

Instantly share code, notes, and snippets.

@leommoore
Created February 4, 2013 21:58
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 leommoore/4710081 to your computer and use it in GitHub Desktop.
Save leommoore/4710081 to your computer and use it in GitHub Desktop.
JavaScript - Escape HTML

#JavaScript - Escape HTML

function escapeHTML(text) {
  var replacements = {"<": "&lt;", ">": "&gt;", "&": "&amp;", "\"": "&quot;"};
  return text.replace(/[<>&"]/g, function(character) {
    return replacements[character];
  });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment