Skip to content

Instantly share code, notes, and snippets.

@influxweb
Forked from dbushell/gist:2567294
Created May 1, 2012 15:33
Show Gist options
  • Save influxweb/2568881 to your computer and use it in GitHub Desktop.
Save influxweb/2568881 to your computer and use it in GitHub Desktop.
HTML Entities with jQuery and the Browser
var div = $('<div/>');
function encodeEntities(str) {
return div.text(str).html();
}
function decodeEntities(str) {
return div.html(str).text();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment