I have 2 div like this:
<div id="container1"><input class="1"><input class="2"></div>
<div id="container2"><input class="1"><input class="1"><input class="2"></div>
Now how do I remove all class="1" but only from the container2.
This should do it.
$('#container2 .1').remove();
This seeks all descendants from the element with id "container2" which belongs to the class named "1" and then remove them from the DOM.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With