pav
9/12/2013 - 1:10 PM

specify_unwanted_elements

//select the third div
$thirdDiv = $allTheDivs.eq(2);

//use .not() to get all of the divs except the third one
$allButTheThird = $allTheDivs.not($thirdDiv);