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?
|
|
It depends where you're coming from I suppose, but for storing simple properties, For example when you do this to get data:
What you're actually doing is this:
This is longer than fetching an attribute directly, like this:
So with data you're actually getting the Then again, |
|||||||||||
|