I just noticed that adding context to the selector is much faster than refining your selector.
$('li',$('#bar')).append('bla');
Is twice as faster than:
$('#bar li').append('bla');
Is this generally true?
|
2
|
|
|
|
|
|
This is true in the general case. With respect to your specific examples however it is not necessarily true for jQuery <= 1.2.6. Up to and including jQuery 1.2.6 the selector engine worked in a "top down" (or "left to right") manner. Meaning that both your examples would operate like this (roughly):
jQuery 1.3.x (ie, Sizzle, which jQuery embeds) introduced a "bottom up" (or "right to left") approach to querying the DOM. So
There are benefits and downsides to both approaches. You found one of the downsides. Edit: just found out from this discussion that Sizzle trunk now makes a special exemption of selectors where |
|||
|
|