Skip to content

Instantly share code, notes, and snippets.

@agentmilindu
Forked from jmblog/gist:3222899
Last active October 9, 2015 00:28
Show Gist options
  • Save agentmilindu/3411402 to your computer and use it in GitHub Desktop.
Save agentmilindu/3411402 to your computer and use it in GitHub Desktop.
Simple HTML encoding/decoding using jQuery
// http://stackoverflow.com/questions/1219860/javascript-jquery-html-encoding
function htmlEncode(value){
return $('<div/>').text(value).html();
}
function htmlDecode(value){
return $('<div/>').html(value).text();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment