remove 3 last divs with jQuery

zep picture zep · Jul 8, 2011 · Viewed 12.9k times · Source
<div id="widgetAreaFooter">
<div class="row">1</div>
<div class="row">2</div>
<div class="row">3</div>
<div class="row">4</div>
<div class="row">5</div>
<div class="row">6</div>
<div class="row">7</div>
</div>

How to remove the 3 last div ?

I tryed this but it doesn't work :/

var row = $( '#widgetAreaFooter>.row' );
var nbr = row.length ;

for ( var i=4;i<nbr;i++ ) row.get(i).remove();
or
for ( var i=4;i<nbr;i++ ) row[i].remove();

Answer

kapa picture kapa · Jul 8, 2011

This will remove the last three elements:

$('#widgetAreaFooter > .row').slice(-3).remove();

jsFiddle Demo

  • You can get a part of a jQuery collection using .slice().

    If a negative number is provided, this indicates a position starting from the end of the set, rather than the beginning.