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.

My HTML looks like this:

   <li class="li-top"><a class="top sub" href=#>Blah</a> .... </li>

What I am trying to do is to select the anchor tag, so I can change the color of the text ("Blah"). But here's the catch: I am using closest() because I am starting from a descendant of that li tag:

   $(this).closest('li.li-top');

How do I get that anchor tag from this starting point? I tried next(), each(), children(), etc. I can't get it. Thanks.

share|improve this question

2 Answers

up vote 2 down vote accepted

If you're starting from one of the children, you might try:

$(this).parents('li.li-top').find('a:first');

I often go this way to find 'cousins once removed' in the DOM.

share|improve this answer
That worked!!! Thank you so much!!! – sqlman Jan 8 '12 at 0:56

This way probably:

$('li.li-top a:first')

Or:

$(this).find('li.li-top a:first')
share|improve this answer
Nope. I am using closest() and that selector doesn't work with closest(). It doesn't select the anchor. Thanks though. – sqlman Jan 8 '12 at 0:54
so don't use closest() – kaz Jan 8 '12 at 0:56

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.