vote up 3 vote down star
1

Which of these two is better/faster?

var a = $('.listItem', $('#myList'));

vs

var a = $('#myList .listItem');
flag

70% accept rate

4 Answers

vote up 4 vote down check

First of all, you're doing it wrong in a weird way. It should be:

var a = $('.listItem', '#myList');

And according to Resig, the find() method has proven to be quickest in most cases:

var a = $("#myList").find(".listItem");
link|flag
the context should ideally be an element to fully take advantage of it. – Russ Cam Oct 12 at 20:39
Please note that the difference in speed between the two of these is so negligible that unless you're doing this 1000 times on a page, no one is likely to notice. – Bob Aman Oct 12 at 20:41
@Bob, yeah, that's very true. As someone stated before on SO (can't remember where): If you're looking to speed up your website, start somewhere else than jQuery...I'd say that's a fairly good advice in most cases.. – peirix Oct 12 at 20:43
Your two examples will yield completely different results. And he is not doing it wrong. – KyleFarris Oct 12 at 20:49
@Kyle: How will they yield different results? They're both looking inside #myList for elements with a class name of listItem. But you're right, he wasn't doing it wrong, he was simply doing using bad practice. – peirix Oct 12 at 20:57
vote up 3 vote down

The only real way to know is to profile them, that is really the only answer that can be given to the question. There will be a slight performance hit with the first since context works best when it is an element and not a jQuery object.

link|flag
vote up 0 vote down

The second is definitely easier to read and would make the code easier to maintain.

...that in my opinion makes it better.

They should both produce similar performance results.

link|flag
In my case speed is more important than readability. – Eeyore Oct 12 at 20:36
vote up 0 vote down

For the record,

var a = $('.listItem',$('#myList'));

will perform exactly the same as:

var a = $('#myList').find('.listItem');

In my tests, this works the fastest:

var a = $('#myList > .listItem');

Oh, and:

var a = $('.listItem', '#myList');

is completely wrong.

link|flag
We all hear you on the completely wrong part. But would you mind explaining it? Just saying it's wrong isn't helping anyone. – peirix Oct 12 at 21:02
4  
But #myList > .listItem is not the same as #myList .listItem. – Gumbo Oct 12 at 21:03
I am not so sure this is true as someone pointed out on freenode that var a = $('.listItem',$('#myList')); actually makes an extra function call. – cballou Oct 12 at 21:07

Your Answer

Get an OpenID
or

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