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

Revision 12 of this benchmark created on


Preparation HTML

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

Test runner

Ready to run.

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

Revisions

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