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\").
I would use filter for such case,
$('li').filter(function (i, item) { return i != 2; })