vote up 1 vote down star

Hi,

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 I'd need google retuned.

I've tried '$this a' but can't quite work out the syntax.

jQuery:

$("ul li").click(function(event){
$("input").val($(this).html());			  
  }
);



html:
<ul>
    <li><a href="http://www.google.com" id="google">Google</a>
</ul>
flag

3 Answers

vote up 3 vote down check

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 refer to the element that fired your event

link|flag
I was just blind :) – smoothdeveloper Dec 11 '08 at 13:54
Thank you kindly :) – Tom Dec 11 '08 at 14:02
Yep, this is definitely it. – Josh Dec 11 '08 at 14:23
vote up 2 vote down

Hey Tom

To make your code a little neater, lets bind triggers with functions like so: (i suggest you give your UL an ID so it is specific to only elements within that UL)

$('ul li').bind('click', getAnchorId);

The function that is called (getAnchorId) gets the ID attribute of the children element (a) of the clicked element (ul li) and applies it to a variable (anchorId), and to show its getting the correct info I put the result in an alert.

function getAnchorId() {
    var anchorId = $(this).children('a').attr('id');
    alert(anchorId);
}

Now u can do what ever u wish with that variable :)

hope this helps :)

link|flag
That is highly subjective, I personally prefer to use an anonymous function, especially since this is so specific. – Pim Jager Dec 11 '08 at 16:52
agreed, and using bind is just extra key press effort instead of using .click. – redsquare Dec 11 '08 at 17:56
vote up 0 vote down

You could use the children method:

$(this).children('a')[0].attr('id');

I'm not sure about the syntax, but something like this should work.

link|flag
using the array indexer gives you a dom object back therefore the .attr method would not exist and error. U need $(this).children('a')[0].id or $(this).children('a').get(0).id or $(this).children('a').attr('id'); – redsquare Dec 11 '08 at 17:58
Are you sure it returns a DOM object? Either way, I said I wasn't sure, I'll test it sometime and correct it if it's wrong. – Crossbrowser Dec 12 '08 at 14:36

Your Answer

Get an OpenID
or

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