Javascript decoding html entities
javascript, jquery
Solution
var text = '<p>name</p><p><span style="font-size:xx-small;">ajde</span></p><p><em>da</em></p>';
var decoded = $('<textarea/>').html(text).text();
alert(decoded);
This sets the innerHTML of a new element (not appended to the page), causing jQuery to decode it into HTML, which is then pulled back out with .text().
Live demo.
Problem
Possible Duplicate: How to decode HTML entities using jQuery? I want to convert this text: ``` "<p>name</p><p><span style="font-size:xx-small;">ajde</span></p><p><em>da</em></p>" ``` to html, with tags and everything in Javascript or Jquery. How to do this?