Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to use the html data-* attributes and have some images like this:

<img src="http://placehold.it/100.png" data-selected="true">
<img src="http://placehold.it/100.png" data-selected="false">
<img src="http://placehold.it/100.png" data-selected="false">
<img src="http://placehold.it/100.png" data-selected="true">
<img src="http://placehold.it/100.png" data-selected="false">

how can i now just only get the ones with data-selected="true"?

I tried:

$("img").each(function(){
  if($(this)).attr("data-selected") == "true") {
    //do something
  }
}

but this seems not to be the best way to me. Is there a direct selector where i can do something like

 $("img data-selected=true") ?

thanks for your help!!

share|improve this question
1  
Please note that jQuery has excellent documentation – ManseUK Mar 14 '12 at 20:01

7 Answers

up vote 10 down vote accepted

$("img[data-selected='true']") but quoting of value isn't obligatory.

PS: it is called CSS attribute selector.

share|improve this answer
Its called the attribute equals selector – ManseUK Mar 14 '12 at 19:58

Well for one thing you should use .data(...)

$("img").each(function(){
  if($(this)).data("selected") == "true") {
    //do something
  }
}

Or you can use:

$("img[data-selected='true']").something...
share|improve this answer
+1 for the pointer to .data() im forever writing "use .data() instead of .attr()" on here !!! – ManseUK Mar 14 '12 at 20:00
oh, didn't thought about .data() will do that! – Bfar221 Mar 14 '12 at 20:04

Try :

$("img[data-selected='true']")

This uses the attribute equals selector

share|improve this answer
+1 for the link – jbabey Mar 14 '12 at 19:59
thanks for this link! – Bfar221 Mar 14 '12 at 20:04

You can use attribute selector

$("img[data-selected='true']");

Other alternative is filter()

$("img").filter(function(){ return $(this).data("selected") == "true" });

Note that to access data attributes you can use data() method and you just have to pass the second half of the data attribute name.

share|improve this answer
1  
Ahhh .filter()! I was trying to remember the name of that function! +1 :-) – Neal Mar 14 '12 at 20:04
cool so many posibilities !! will try that too altought the first one would be shorter :) – Bfar221 Mar 14 '12 at 20:08

Try the following selector

$('img[data-selected="true"]')
share|improve this answer

You can use

$("img[data-selected='true']")

there are a lot of more selectors than just tags and classes. See here on w3.org

share|improve this answer
thanks for the link ! – Bfar221 Mar 14 '12 at 20:01

This is some way to do this without using jQuery:

var imgs = document.getElementsByTagName('img');

imgs.​​​​​map(function (img) {
    if (img.attributes["data-selected"].value == "true") {
        // do something
    }
});​

And you don't need jQuery!

share|improve this answer
1  
jQuery here $('img') :) – ShankarSangoli Mar 14 '12 at 20:13
1  
yep; but here it comes native version: document.getElementsByTagName('img') :) And no more jQuery – kobylecki Mar 14 '12 at 20:23
In that case its better if you modify your answer with alternative approach without using Javascript. – ShankarSangoli Mar 14 '12 at 20:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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