I have this HTML:
<div id="tags">
<ul>
<li><input type="text" /><a href="#">First Link</a> <a href="#">Second Link</a></li>
<li><input type="text" /><a href="#">First Link</a> <a href="#">Second Link</a></li>
<li><input type="text" /><a href="#">First Link</a> <a href="#">Second Link</a></li>
<li><input type="text" /><a href="#">First Link</a> <a href="#">Second Link</a></li>
<li><input type="text" /><a href="#">First Link</a> <a href="#">Second Link</a></li>
</ul>
</div>
What selector would I use to capture the first anchor of each li element, and how about second anchor of each li without adding any extra ids or classes?
Well, I tried this:
$('#tags a:last-child')
And I was able to get the second anchor of each li, but I don't understand why that works. Wouldn't an element need to be inside the anchor to select something yet it is able to select the 2nd anchor of each li. Later on I didn't care how it worked, as long as it worked so I figure I would do the same thing to get the first element which would be:
$('#tags a:first-child')
Yet this does not work to get the first anchor of each li. Any ideas?
EDIT: So I guess I was doing it right, but it wasn't working because I had an input text box there which seems to make it not work. Why would it not work anymore once an input box is there?
tdelements in the nth column in a particular table?" – Phrogz Jan 19 '11 at 21:12$("#tags a:first-child")worked for me... – pferdefleisch Jan 19 '11 at 21:13