vote up 0 vote down star
1

I would like a jQuery function to know which link was clicked to call it, i.e. I would like the link's id value to be passed to the jQuery function.

Is this possible? If so what is the neatest way to do it.

flag

67% accept rate

3 Answers

vote up 2 vote down check

Sure. Inside the click() event handler you can refer to the element clicked by this.

$("a").click(function() {
  alert(this.id);
  ...
});

or

$("a").click(function() {
  alert($(this).attr("id"));
  ...
});
link|flag
THanks .... I really need to remember the "this.id" technique.It basically solves all the jQuery questions I keep asking. – Ankur Dec 8 at 7:39
vote up 2 vote down
$("a").click(function() { 
   var linkid = $(this).attr("id");

   // use linkId here
});
link|flag
vote up 1 vote down

Don't forget to cancel default behaviour, or you won't achieve nothing.

$("a").click(function(e) {
   e.preventDefault();
   var linkid = $(this).attr("id");
   //do whatever here
});
link|flag
thanks - 15 characters – Ankur Dec 8 at 7:54

Your Answer

Get an OpenID
or
never shown

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