Suppose I have a string of HTML code. I want to use JQuery to remove all tags from the string.
How can I do that?
Note: I want t
i guess this should work
$('script').each(function () { $(this).remove(); });