$("#myul li") vs $("#myul").find("li") - which is faster ?
I've been reading a lot about selector speed and if I understand correctly the claim that Sizzler works from right to left, then $("#myul").find("li") is faster then $("#myul li"), but I have a suspicion that that rule may not be true when leading with an id selector... Could not find authoritative answer anywhere.