Get the entire string of a jquery DOM object
- by Scozzard
Hi,
I have had a bit of a look around and am having some difficulty solving a wee issue I am having.
I basically have a string of HTML, I convert that to a JQuery DOM object so that I can easily remove all elements that have a certain class using JQuery's .remove(). I.e.,
var radHtml = editor.get_html();
var jqDom = $(radHtml);
$(".thickbox",…