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\").
In addition to the custom selector, you could also implement this as a jQuery plugin:
$.fn.neg = function (index) { return this.pushStack( this.not(':eq(' + index + ')') ); }