Skip to content

Instantly share code, notes, and snippets.

@mschaaf
Created September 27, 2013 07:20
Show Gist options
  • Save mschaaf/6725177 to your computer and use it in GitHub Desktop.
Save mschaaf/6725177 to your computer and use it in GitHub Desktop.
html encode/decode with javascript and jquery
function decodeHtml(value) {
if (value) {
return $('<div/>').html(value).text();
}
return value;
}
function encodeHtml(value) {
if (value) {
return $('<div/>').text(value).html();
}
return value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment