Is there an easy way to take a string of html in JavaScript and strip out the html?
Simplest way:
jQuery(html).text();
That retrieves all the text from a string of html.