Using jquery, what is the best way to delete all divs with a certain class name ? (I don\'t want to just hide the div but fully delete it). So if I have this code:
$("div.Test").remove();
That'll do it.