vote up 3 vote down star

Lately i have been wondering if there is a performance difference between repeating the selector just over and over again or just using a var and store the selector in that and just refer to it.

$('#Element').dothis();

$('#Element').dothat();

$('#Element').find('a').dothat();

or just

var Object = $('#Element');

Object.dothis();

Object.dothat();

$('a', Object).dothat();

I prefer the second way because it looks cleaner and is better maintainable.

flag
1  
The second way is probably faster as you're not scanning the DOM index every time for the requisite objects. Also, as you say, it's just better coding practice as long as the new variable names properly reflect what they contain. – Cirieno Oct 22 at 10:16
also, to remember that it was a jQuery object, you can use $object it is the same thing though, but you always know your js objects and jquery related objects. – Sinan Y. Oct 22 at 10:29

5 Answers

vote up 3 vote down check

There is certainly a performance difference, since sizzle does not have to be executed each time, however, there is also a functionality difference. If the dom happens to change between the 1st and 3rd calls, the cached jQuery object will still contain the old set of elements. This can often occur if you cache a set and then use it in a callback.

link|flag
vote up 2 vote down

I prefer the second way. It will be easier to maintain code even if an element id or class changes.

link|flag
+1 for "easier to maintain code" – smack0007 Oct 22 at 10:23
vote up 2 vote down

There is another fast way. It is as fast as your second code.

$('#Element')
   .dothis()
   .dothat()
   .find('a')
      .dothat();
link|flag
vote up 1 vote down

The second way has a performance benefit. It may or may not be great but it is better. In the first version, you're doing dom traversal 4 times, in the second you only do 2.

Pretty good article on speeding up jQuery here: http://net.tutsplus.com/tutorials/javascript-ajax/10-ways-to-instantly-increase-your-jquery-performance/

link|flag
vote up 1 vote down

expending on Ghommey's method

var Object = $('#Element');

Object
   .dothis()
   .dothat()
   .find('a')
      .dothat();

Faster, and stores the object for later use.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.