Possible Duplicate:
Get list of data-* attributes using javascript / jQuery

How would you go about retrieving all the data attributes from an element, and throw them into an array?

For example, if I have a list element:

<li id="the_example" class="haz_data" data-foo="omega" data-bar="zeta" data-derp="psi">Hello, world!</li>

I'd love to be able to grab all those data attributes and end up with an array or object like this (or something similar):

[{foo:omega},{bar:zeta},{derp:psi}]

A solution where you don't know the data attribute names would be preferred.

link|improve this question

Are you using jQuery? the .data() method will yield an object of all data attributes or a single one by key. – tb. May 6 '11 at 17:50
Ya, jQuery, but I only want the data-s – hookedonwinter May 6 '11 at 17:52
@Ian and I thought my searching was good. Dammit, good find. – hookedonwinter May 6 '11 at 17:54
feedback

closed as exact duplicate by Mark Biek, eykanal, hookedonwinter, hunter, bažmegakapa May 6 '11 at 18:00

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

As pointed by @Ian Pugsley, your solution can be found here, on the thread Get list of data-* attributes using javascript / jQuery.

link|improve this answer
feedback

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