jQuery .data() performance vs .attr() performance (v59)

Revision 59 of this benchmark created on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<div id='theInput' data-someData='rrrrtttppp'>
<script>
  var theInput = $('#theInput');

</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Attribute get
$(theInput).attr('data-someData');
ready
Data get
$(theInput).data('someData');
ready

Revisions

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