Hi all,

In a HTML document I'm having a few divs with the same class. In each
of this divs is nested an unordered list with inside the list items
some anchors. I'm trying to find a certain jquery expression which
says I want link#3 from div#2. I've tried;

$("div.pic:eq(1) ul li a:eq(2)").hide();

which doesn't seem to work... I think because you can't have :eq()
twice as selector. How would I make this work?

Reply via email to