Does anyone know if there exist some kind of selector to select al the elements from a matched set but the one given by the indicated index. E.g.:
$("li").neq(2).size();
Supposing that there were 5 elements, the last statement would give you 4, and would contain all the <li>
elements but the second one in the DOM.