What is better from performance wise document.getElementById('elementId') or $('#elementId') ?
How can I calculate the speed by myself?
| ||||
|
feedback
|
|
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 :
This will give you a better performance, and at the same time, allow you to use jQuery. | |||
|
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. | |||||
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.
| ||||
|
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. | |||
|
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. | ||||
|
feedback
|