I have many divs with a specific class and I want to delete all those divs. How do you do this using jQuery or javascript? But, how do you delete all divs with a specific class? Thanks!
code:
<div>
<div class='testa'>test a</div>
<div class='testb'>test b</div>
<div class='testc'>test c</div>
<div class='testa'>test a</div>
<div class='testb'>test b</div>
<div class='testc'>test c</div>
<div class='testa'>test a</div>
</div>
How would you delete all div’s with the testa class?
If you’d tried
remove, then you’d know that it works for every element in the matched selection: