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.

Okay, this may be a bit basic. The HTML is :

<div class="parents-of-all">
<p>
    <a>
        <span class="thechild">Something</span>
    </a>
</p>

The jquery is

$('.parents-of-all').click(function(){
    alert($(this).find('span').attr('class'));
});

But somehow it doesn't work. Test it here :

http://jsfiddle.net/3zn7e/1/

My question is how can I traverse to the span? My usual way is

$(this).children().children().children().attr('class');

I'm sure there are shorter ways than this and using find() is one of them, but I can't seem to make it work.

Many thanks!

EDIT : DUH! Apparently I forgot the . for the parents-of-all DOM selector. Sometimes the simplest error is right there in your face.

But again, is there any difference between using find() and multiple children() ? I find using multiple children() ensures more accurate traversing since we can add elements selector if we want, but any other major difference?

share|improve this question

closed as too localized by BoltClock Jul 7 '12 at 3:30

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 1 down vote accepted

You were missing the dot in your class selector:

$('.parents-of-all').click(function(){
    alert($(this).find('span').attr('class'));
});

http://jsfiddle.net/BoltClock/3zn7e/2

share|improve this answer

If you are looking to change an attribute on the children-with-ancestor or children-with-parent, you should use the respective selector:

For example:

$('.parents-of-all span').addClass('hello');

Would apply the class "hello" to all <span> elements that are descendants of an element of class parents-of-all.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.