I\'ve got a list of links which have a click event attached to them, I need to get the ID from the child A link. So in the example below if I clicked the first list element
You could use the children method:
$(this).children('a').eq(0).attr('id');
I'm not sure about the syntax, but something like this should work.