Remove html string with jQuery -
i have peice of html being dynamically created knows where. instead of tracking down can run jquery remove it? want delete instances of:
<div style="clear:both"></div>
you consider this:
$('div[style*=both]').remove();
Comments
Post a Comment