> Hey, What about the last element, the last <li> for example... instead of
> using find("li:last") can i use find("li").end() ??? i think i saw end()
> somewhere =)
Nope, not at all, heh.
.end() is used like so:
.find("li")
.click(...)
.end()
.find("a")
.hide()
.end()
Think of it as something like an "if" statement, or something.
--John
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
