Question

I have a peice of HTML that is being dynamically created from who knows where. Instead of tracking it down can I just run some jQuery to remove it? I want to delete all instances of:

<div style="clear:both"></div>
Was it helpful?

Solution

You could consider something like this:

$('div[style*=both]').remove();

OTHER TIPS

$("div").remove();

The above will remove all divs.

You might want to provide some more context, to limit the removal to this particular div though.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top