How do I use jQuery to decode HTML entities in a string?
You have to make custom function for html entities:
function htmlEntities(str) { return String(str).replace(/&/g, '&').replace(//g,'>').replace(/"/g, '"'); }