Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to select every third visible child of an ul. I tried to use :visible but don't get it to work. Is there another way of selecting elements with display:list-item? I figured :visible is only looking at display:block?

share|improve this question
Elements are only considered to be hidden when their display is set to none, everything else is considered to be visible. – Anriëtte Myburgh Feb 15 '11 at 22:09

1 Answer

If you're using nth-child, it doesn't take into account the subset returned by :visible when determining its nth position.

You'll first need to select the visible ones, then do a .filter().

Example: http://jsfiddle.net/YNV3J/

$('ul > li:visible').filter(function(i) {
    return i % 3 === 2;
}).addClass('third');

EDIT: Original answer was using nth-child which will fail in this situation. Fixed.

share|improve this answer

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.