var vs getElementById

JavaScript performance comparison

Test case created by ThinkingStiff

Preparation code

<div id="div"></div>

Preparation code output

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
var
var div = document.getElementById( 'div' );
div.addEventListener( 'click', function () {}, false );
div.addEventListener( 'mousedown', function () {}, false );
div.addEventListener( 'keydown', function () {}, false );
 
pending…
getElementById()
document.getElementById( 'div' ).addEventListener( 'click', function () {}, false );
document.getElementById( 'div' ).addEventListener( 'mousedown', function () {}, false );
document.getElementById( 'div' ).addEventListener( 'keydown', function () {}, false );
pending…

You can edit these tests or add even more tests to this page by appending /edit to the URL.

Compare results of other browsers

0 comments

Add a comment