Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found this test http://jsbin.com/ekofa/2 that shows that HTML5 data-XXX is faster then jQuery .data(). I am starting a project that require lots of small data pieces placed on HTML elements where performance is crucial. Should I use .data() or HTML5 data-XXX? Is that test relevant and accurate?

share|improve this question
I think the numbers speak for themselves. – Chris Aug 13 '10 at 11:51
Indeed but I always thought that .data() being stored in cache is faster then accessing the DOM – Mircea Aug 13 '10 at 11:53

1 Answer

up vote 4 down vote accepted

It depends where you're coming from I suppose, but for storing simple properties, data-XXX will be faster just because of how $.data() and .data() work.

For example when you do this to get data:

var thing = $('#myelement').data('thing')

What you're actually doing is this:

var thing = $.cache[$('#myelement')[0][$.expando]]['thing'];

This is longer than fetching an attribute directly, like this:

$('#myelement').attr('thing')

So with data you're actually getting the $.expando attribute just to get the ID then going to $.cache to get the object, this extra step means it will be consistently slower.

Then again, data-xxx attributes weren't meant for storing event handlers or other really complex objects that you're actively manipulating...so they aren't a 1:1 in their application so a direct comparison may not be fair. Though they're used for the same things in many cases, they also have different applications that aren't common to both...so keep that in mind when picking what to use. This is usually true of any 2 mostly common technologies IMO.

share|improve this answer
I need this to store simple strings like "243px", "#333"... Not complex objects – Mircea Aug 13 '10 at 12:15
@Mircea - Then I personally would use data attributes if you have a consistent set of properties to store :) – Nick Craver Aug 13 '10 at 12:18
Will do so, thanx Nick – Mircea Aug 13 '10 at 12:27
@NickCraver - i asked this same question recently [stackoverflow.com/questions/7266663/… - hadn't found this question] - and found jsperf.com/jquery-data-vs-attr/9. So confused as to whether $.data is now better ? As this test seems to show it is ? – Tim Sep 1 '11 at 6:44
@Tim - Yes $.data is the fastest (especially in 1.6.2+), because .attr() checks quite few sources first, where as $.data is going directly to $.cache[elem[$.expando]]['key'], and that direct property access with no additional checks is much speedier. – Nick Craver Sep 1 '11 at 10:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.