Which of these two is better/faster?
var a = $('.listItem', $('#myList'));
vs
var a = $('#myList .listItem');
|
1
|
|
|
|
|
|
First of all, you're doing it
And according to Resig, the
|
||||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
For the record,
will perform exactly the same as:
In my tests, this works the fastest:
Oh, and:
is completely wrong. |
||||||||
|