Good ways to improve jQuery selector performance? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:19:25Z http://stackoverflow.com/feeds/question/46214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance 17 Good ways to improve jQuery selector performance? JC Grubbs 2008-09-05T16:22:26Z 2009-05-13T15:16:22Z <p>I'm looking for any way that I can improve the selector performance of a jQuery call. Specifically things like this:</p> <p>Is <code>$("div.myclass")</code> faster than <code>$(".myclass")</code></p> <p>I would think it might be, but I don't know if jQuery is smart enough to limit the search by tag name first, etc. Anyone have any ideas for how to formulate a jQuery selector string for best performance?</p> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/46240#46240 0 Answer by Ryan Doherty for Good ways to improve jQuery selector performance? Ryan Doherty 2008-09-05T16:32:25Z 2008-09-05T16:32:25Z <p>I've been on some of the jQuery mailing lists and from what I've read there, they most likely filter by tag name then class name (or vice versa if it was faster). They are obsessive about speed and would use anything to gain a smidgen of performance.</p> <p>I really wouldn't worry about it too much anyway unless you are running that selector thousands of times/sec. </p> <p>If you are really concerned, try doing some benchmarking and see which is faster.</p> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/46253#46253 12 Answer by kamens for Good ways to improve jQuery selector performance? kamens 2008-09-05T16:39:39Z 2008-09-05T16:39:39Z <p>There is no doubt that <strong>filtering by tag name first is much faster</strong> than filtering by classname.</p> <p>This will be the case until all browsers implement getElementsByClassName natively, as is the case with getElementsByTagName.</p> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/217630#217630 16 Answer by Jeff Atwood for Good ways to improve jQuery selector performance? Jeff Atwood 2008-10-20T06:02:10Z 2008-10-20T06:02:10Z <p>jQuery performance analysis of selectors</p> <p><a href="http://www.componenthouse.com/article-19" rel="nofollow">http://www.componenthouse.com/article-19</a></p> <p>short story: finding an element by id is <em>much</em> faster than the other methods -- at least in that test.</p> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/218846#218846 2 Answer by Joel Coehoorn for Good ways to improve jQuery selector performance? Joel Coehoorn 2008-10-20T15:37:06Z 2008-10-20T15:37:06Z <p>I'll add a note that in 99% of web apps, even ajax heavy apps, the connection speed and response of the web server is going to drive the performance of your app rather than the javascript. I'm not saying the you should write intentionally slow code or that generally being aware of what things are likely to be faster than others isn't good. </p> <p>But I am wondering if you're trying to solve a problem that doesn't really exist yet, or even if you're optimizing for something that might <em>change</em> in the near future (say, if more people start using a browser that supports <code>getElementsByClassName()</code> function referred to earlier), making your optimized code actually run slower. </p> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/382663#382663 0 Answer by Evan Moran for Good ways to improve jQuery selector performance? Evan Moran 2008-12-20T00:36:28Z 2008-12-20T00:36:28Z <p>Consider using Oliver Steele's Sequentially library to call methods over time instead of all at once.</p> <p><a href="http://osteele.com/sources/javascript/sequentially/#" rel="nofollow">http://osteele.com/sources/javascript/sequentially/</a></p> <p>The "eventually" method helps you call a method after a certain period of time from its initial call. The "sequentially" method lets you queue several tasks over a period of time. </p> <p>Very helpful!</p> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/382683#382683 1 Answer by Evan Moran for Good ways to improve jQuery selector performance? Evan Moran 2008-12-20T00:45:20Z 2008-12-20T00:45:20Z <p>Another place to look for performance information is Hugo Vidal Teixeira's Performance analysis of selectors page. </p> <p><a href="http://www.componenthouse.com/article-19" rel="nofollow">http://www.componenthouse.com/article-19</a></p> <p>This gives a good run down of speeds for selector by id, selector by class, and selector prefixing tag name.</p> <p>The fastest selectors by id was: $("#id")</p> <p>The fastest selector by class was: $('tag.class') </p> <p>So prefixing by tag only helped when selecting by class! </p> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/382730#382730 7 Answer by Matthew Crumley for Good ways to improve jQuery selector performance? Matthew Crumley 2008-12-20T01:16:19Z 2008-12-20T01:16:19Z <p>In some cases, you can speed up a query by limiting its context. If you have an element reference, you can pass it as the second argument to limit the scope of the query:</p> <pre><code>$(".myclass", a_DOM_element); </code></pre> <p>should be faster than</p> <pre><code>$(".myclass"); </code></pre> <p>if you already have a_DOM_element and it's significantly smaller than the whole document.</p> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/416144#416144 3 Answer by jQuery Lover for Good ways to improve jQuery selector performance? jQuery Lover 2009-01-06T11:13:23Z 2009-01-06T11:13:23Z <p>Here is how to icrease performance of your jQuery selectors:</p> <ul> <li>Select by #id whenever possible (<a href="http://jquery-howto.blogspot.com/2009/01/improving-jquery-code-performance.html" rel="nofollow">performance test results</a> ~250 faster)</li> <li>Specify scope of your selections (<code>$('.select', this)</code>)</li> </ul> http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/858596#858596 2 Answer by Dmitri Farkov for Good ways to improve jQuery selector performance? Dmitri Farkov 2009-05-13T15:16:22Z 2009-05-13T15:16:22Z <p>In order to fully comprehend what is faster, is you have to understand how the CSS parser works.</p> <p>The selector you pass in gets split into recognizable parts using RegExp and then processed piece by piece.</p> <p>Some selectors like ID and TagName, use browser's native implementation which is faster. While others like class and attributes are programmed in separately and therefore are much slower, requiring looping through selected elements and checking each and every class name.</p> <p>So yes to answer your question:</p> <p>$('tag.class') is faster than just $('.class'). Why? With the first case, jQuery uses the native browser implementation to filter the selection down to just the elements you need. Only then it launches the slower .class implementation filtering down to what you asked for.</p> <p>In the second case, jQuery uses it's method to filter each and every element by grabbing class.</p> <p>This spreads further than jQuery as all javascript libraries are based on this. The only other option is using xPath but it is currently not very well supported among all browsers.</p>