i an trying to remove the first 4 divs if i click a button:
<div class="test">
<div class="1"></div>
<div class="1"></div>
<div class="1"></div>
<div class="1"></div>
<div class="1"></div>
<div class="1"></div>
</div>
i;ve tried this, but it seems to remove them one by one:
if ($('.test').find('.1').size() >= 4) {
$('.test').find('.1').remove();
}
thanks