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 have a <div> and in that div there are several <a> tags. With jQuery I want to show the first four <a> tags.

I have managed that with the following code:

$('div.gallery-hor.read-more a:nth-of-type(-1n+4)').show();

There's one problem: IE* and later do not support the :nth-of-type() code.

Is there a workaround width jQuery to fix this problem cross-browser?

share|improve this question
Have you tried with :nth-child instead? – Daniel Ziga Jan 12 '12 at 11:41
1  
@Dandroid, AFAIK, ie7 doesnt support :nth-child – Johan Jan 12 '12 at 11:43

2 Answers

http://docs.jquery.com/Selectors/lt#index

$('div.gallery-hor.read-more a:lt(4)').show();
share|improve this answer
+1 Exactly! "lt" in :lt() stands for "less than". – Tadeck Jan 12 '12 at 11:45

You can use slice not just for selecting first four but you can select from any index(start) to any index(end). EXAMPLE

$('div.gallery-hor.read-more a').slice(0,4).show();

documentation

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.