The html object:
<div data-myAttribute="test"></div>
The code:
var $o = $("div");
$.each($o.data(),function(k,v){
console.log(k);
//writes 'myattribute' instead of 'myAttribute'
});
How do I preserve the case of the attribute?
If your goal is to target
myAttribute
as key ofdataset
property, you should usedata-my-attribute
:See following link regarding camelCased rule: https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement.dataset
PS: as Izkata commented it: