Skip to content

Instantly share code, notes, and snippets.

@evocateur
Created October 5, 2009 17:20
Show Gist options
  • Save evocateur/202255 to your computer and use it in GitHub Desktop.
Save evocateur/202255 to your computer and use it in GitHub Desktop.
var escapeHTML = function(s) {
return s.replace(
/([<>&""''])/g,
function(m, c) {
switch(c) {
case "<": return "&lt;";
case ">": return "&gt;";
case "&": return "&amp;";
case '"': return "&quot;";
case "'": return "&apos;";
}
return c;
}
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment