Skip to content

Instantly share code, notes, and snippets.

@englishextra
Last active May 25, 2016 12:51
Show Gist options
  • Save englishextra/214582c0f3ba64be19c655f57f11241d to your computer and use it in GitHub Desktop.
Save englishextra/214582c0f3ba64be19c655f57f11241d to your computer and use it in GitHub Desktop.
/*!
* escape string for HTML attributes and titles
* gist.github.com/englishextra/214582c0f3ba64be19c655f57f11241d
*/
function escapeHtml(s) {
return s = s.replace(/[<!="'\/>&]/g, function (s) {
return {
"<" : "&lt;",
"!" : "&#033;",
"=" : "&#061;",
'"' : "&quot;",
"'" : "&#39;",
"/" : "&#047;",
">" : "&gt;",
"&" : "&amp;"
}
[s]
}) || "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment