If I have a div that contains other divs, how do I make it so I remove all the divs inside the original div? That might have been confusing, heres a code example:
<div class="test"><div class="delete"></div></div>
<div class="delete"></div>
How do I remove the 'delete' div thats INSIDE the 'test' div ONLY and still keep the one outside. Thanks!!