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 :
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?