Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Performance wise which one is better:

 $(".myclass").eq(0)

OR

 $("a.myclass")

Note: If there is only one <a> tag having .myclass.

share|improve this question

4 Answers

up vote 19 down vote accepted

The second - always use tag names when you can (see rule 2 of the jQuery performance rules).

share|improve this answer
3  
+1 for the link about performance. – rahul Nov 27 '09 at 11:44
Thanks for the info :-) – Wondering Nov 27 '09 at 12:27

The second, because it can use the browser's document.getElementsByTagName() function that is implemented in C/C++, rather than Javascript.

Also, if there is only a single a with .myclass consider putting an id on it and doing $('#myid'). Fetching by id is the fastest way. It uses document.getElementById() which, again, is implemented in C/C++.

share|improve this answer
+1 - good explanation. – Dominic Rodger Nov 27 '09 at 11:48

These things are easy to profile using firebug.

console.profile();
jQuery('#id');
console.profileEnd();

Sometimes it depends upon your dom / which browser your targetting etc etc rather than relying on 'best practise'. Always profile locally to see what works best.

share|improve this answer

For more, see Paul Irish's Anti-patterns starting at about slide 19.

Always descend from an ID if you can. Be more specific on the right and more general on the left.

There's a jquery based speed profiler out there that would allow you to test this to see the actual speed differences, but I'm having trouble finding it...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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