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?
:nth-childinstead? – Daniel Ziga Jan 12 '12 at 11:41