.getAttribute( 'attribute' ) vs .attributes[ 'attribute' ].value

JavaScript performance comparison

Test case created by ThinkingStiff

Preparation code

<div id="attr"></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
.getAttribute('attribute')
var attr = document.getElementById( 'attr' ).getAttribute( 'id' );

 
pending…
.attributes['attribute']
var attr = document.getElementById( 'attr' ).attributes['id'].value;

 
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