I've often wondered about the use of selectors versus equivalent functions in jQuery. By this I mean statements that comprise the same components that return identical result sets, but are constructed differently.
Take the following example:
alert($("#FundManager1>option").length);
alert($("#FundManager1").find("option").length);
(Note: the intention is for two equivalent queries - If these are not always the same, I would be grateful if you could point this out)
So, given the example above, is there any real difference in speed/performance? Obviously, the former is shorter, so will result in fewer uploaded/downloaded bytes, but I’m not really interested in that at the moment.