What is better from performance wise document.getElementById('elementId') or $('#elementId') ? How can I calculate the speed by myself?

link|improve this question

feedback

5 Answers

up vote 14 down vote accepted

If you are concerned about performance, native getElementById is much much faster, but jQuery gives you very handy access to a lot of stuff. So, you might want to use something like :

$( document.getElementById("some_id") ).jQueryCall();

This will give you a better performance, and at the same time, allow you to use jQuery.

link|improve this answer
feedback

getElementById is faster, because it uses native code. The jQuery selector will also use getElementById, but it first needs to do a lot of tests and comparisons on the text.

link|improve this answer
2  
+1. Also, the speed difference depends on how you use it. If it just a single call to either one of them, there will hardly be any difference. If the call is made hundreds or thousands of times inside a loop or recursively or something, you might notice that jQuery selector is a bit slower. – anon355079 Dec 6 '09 at 9:29
feedback

The native getElementById is faster. Jquery selector engine just wraps this for any #x selectors.

Using the firebug console you can profile jquery in the following way. Not sure it works well for native api calls like getElementById.

console.profile();
$('#eleId');
console.profileEnd();
link|improve this answer
feedback

Of course getElementById is faster but with jQuery you can do lots of things.

To test that, you can try to loop 10k times for each, and compare timestamps before and after.

link|improve this answer
feedback

Use http://jsperf.com/ if you want to test any kind of performance between jquery and dom but jquery is normaly slower with everything since it is based on the dom.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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