Ticket #4262: jquery.eq.patch
File jquery.eq.patch, 374 bytes (added by , 13 years ago) |
---|
-
jquery/src/core.js
498 498 }, 499 499 500 500 eq: function( i ) { 501 return this.slice( i, +i + 1 ); 501 if (i < 0) 502 i += this.length; 503 return this.pushStack( this[i], 'eq', i ); 502 504 }, 503 505 504 506 slice: function() {