jQuery .data() performance vs .attr() performance vs elem.getAttribute() (v15)

Revision 15 of this benchmark created on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<input type="text" id="theInput" value="foo"></input>
<script>
  var dom= document.getElementById("theInput");
  var $dom= $(dom);
  $dom.attr('someAttr', 'theValue').data('someData', 'theValue');
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Attribute get
dom.getAttribute('someAttr');
ready
Data get
$dom.data('someData');
ready
Direct data get
$.data($dom, 'someData');
ready
getAttribute()
dom.getAttribute('someAttr')
ready

Revisions

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