vote up 0 vote down star

I have several images loaded into the DOM via jQuery. Each image has 'display: none' aside from one which is 'display: block'. It's this image which I need to find the index of once selecting the img array from the DOM.

The trouble is, img[style="display: block"] doesn't seem to be working as 'display' isn't the only style set on the element. There's top, left, etc...

How can I find the index of the image with display:block from a selection of images with display:none?

Current code I'm using:

slideshowStart = jQuery('.gallery .slideshow img[style="display: block"]').index(this);
flag

0% accept rate

3 Answers

vote up 0 vote down

you should consider adding a class for those images and add the CSS:

.isBlock {
  display: block
}

.isNone {
  dispay: none
}

Then use:

jQuery('.gallery .slideshow img.isBlock');

You can then use .addClass and .removeClass to change the image that has the display: Block. This might give you some more lines of code but it should improve performance on browsers that support getElementByClassName() function and make the code more human readable. Check my comment selector performance on this answer. Looking for attributes is very expensive, looking for class name is a lot faster (and if the browser implements that function it should be as fast as looking for ID).

link|flag
vote up 0 vote down

You almost have it there. According to the documentation, you want to change the img portion of your query to the following:

img[style*="display: block"]
link|flag
...so close >.< Cheers – spirax Nov 9 at 1:56
vote up 2 vote down

You can use the :visible selector for this:

var slideshowStart = $(".gallery .slideshow img:visible").index(this);
link|flag
Very good answer. – Jordan S. Jones Nov 9 at 1:55

Your Answer

Get an OpenID
or

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