Is there an easy and straight-forward method to select elements based on their data attribute? For example, select all anchors that has data attribute named customerID which has value of 22. I am kind of hesitant to use rel or other attributes to store such information, but I find it much harder to select an element based on what data is stored in it.

Thanks!

link|improve this question

25% accept rate
feedback

1 Answer

$('*[data-customerID="22"]');

You should be able to omit the *, but IIRC, depending on which jQuery version you’re using, this might give faulty results.

Note that for compatibility with the Selectors API (document.querySelector{,all}), the quotes around the attribute value (22) may not be omitted in this case.

Also, if you work with data attributes a lot in your jQuery scripts, you might want to consider using the HTML5 custom data attributes plugin. This allows you to write even more readable code by using .dataAttr('foo'), and results in a smaller file size after minification (compared to using .attr('data-foo')).

link|improve this answer
5  
Just a note that .data('foo') works to get the value of a 'data-foo' attribute since jQuery 1.4.3. Also, since jQuery 1.6: .data('fooBar') gets attribute 'data-foo-bar'. – James McCormack Jul 1 '11 at 14:49
@Zootius: Yeah, the plugin readme has a note about it: “As of jQuery 1.4.3, .data() maps to custom data-* attributes by default, rendering this plugin redundant. It can still be used for older versions of jQuery though.” – Mathias Bynens Jul 4 '11 at 17:23
feedback

Your Answer

 
or
required, but never shown

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