For this html
<div data-a="0123"></div>
this js:
console.log($('div').data('a'));
returns 123. Is there any way without adding extra-chars and cutting it to get a string 0123?
Jsfiddle: http://jsfiddle.net/PXw2J/
|
For this html
this js:
returns Jsfiddle: http://jsfiddle.net/PXw2J/ |
|||
|
|
|
|
||||
|
|
|
From the jQuery doco on
So you need to say:
(Note that you specify the full attribute name, including the 'data-' prefix.) |
|||
|
|