I'm looking for a way to grab the custom attributes of a element with jquery.
<span id='element' data-type='foo' data-sort='bar'></span>
I'm looking to get: ["data-type", "data-sort"] as an array.
Anyone know how to do this?
Thanks.
|
I'm looking for a way to grab the custom attributes of a element with jquery.
I'm looking to get: Anyone know how to do this? Thanks. |
||||
|
|
|
You can use the
You can see a working demo here, aside from grabbing the element, this isn't jQuery specific at all, so you could easily remove it completely if needed. |
||||
|
|
|
Just for reference for those using jQuery, attributes starting with 'data-' can be accessed by the
Some browsers are starting to store these in more advanced ways (local data storage?) and others are not, but it seems to work pretty well. Note that W3C validators don't like expando attributes like this, but I think there are some proposals to standardize this so they do validate. The last time I researched the best way to store data with an element, using Another way I ran across to tie data to an element is to insert a script tag immediately before or after the element, giving it a type other than
This will not be displayed in the browser, and you can still get the HTML in there via |
|||
|
|
|
just simply sorry, answered before read the whole question :-/ don't think there's a built in functionality to get them as an array, get the first, get the second and then build the array manually. |
|||
|
|