3
votes
jQuery child of clicked element
I don't see the sample HTML but
$(this).find('a:first').attr('id')
would do it (fix a:first selector if it's not what you meant)
this …
-1
votes
JQuery - How to add a class to every last list item?
you can try
$('#sidebar ul li:last').addClass('last');
…
