John Resig schrieb:
> The order is definitely important. Every time you do a "filter" (like
> eq or lt) it prunes the list down so all future operations must be
> relative to the previous operations (If that makes any sense).
>
> Additionally, I just recently added shortcut methods for eq/lt/gt so you can
> do:
>
> $("p").lt(5).gt(3)
>
>
When you do something like this, you probably want everything between 2
and 5, so why not extend jQuery to something like
$("p").bt(2,5)
for between. This should mathematical be 2 < x < 5.
Michael
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/