vote up 10 vote down star
4

Is there any way to get the ID of the element that fires an event?

I'm thinking something like:

<html>
  <head>
    <script type="text/javascript" src="starterkit/jquery.js"></script>
    <script type="text/javascript">
      $(document).ready(function(){
        $("a").click(
          function(){
            var test = caller.id;
            alert(test.val());
        }
      );
    });

  </script>
</head>
  <body>
    <form class="item" id="aaa"><input class="title"></input></form>
    <form class="item" id="bbb"><input class="title"></input></form>
  </body>
</html>

Except ofcourse that the var test should contain the id "aaa", if the event is fired from the first form, and bbb, if the event is fired from the second form.

Can anyone help with this?

/Jonas

flag

75% accept rate
Your example is a bit odd. You're attaching a click event to 'a', but don't have any anchors. Changing it to $('input.title').click(...) would be a little clearer for future readers of your question. – Jason Moore Nov 12 '08 at 20:43

5 Answers

vote up 9 vote down check

You can use (this) to reference the object the fired the function.

'this' is a DOM element when you are inside of a callback function (in the context of jQuery), for example, being called by the click, each, bind, etc. methods.

link|flag
'this' is true. :] – matt lohkamp Nov 20 '08 at 4:17
vote up 0 vote down

Hello Joda

would you please paste your function here how you u did this :) .

link|flag
vote up 1 vote down

Very helpful code! I was able to use an alert to show the id of what was clicked! But Im trying to show/hide elements based on what is clicked.

So for example, if you click link 1 (id="1") - all div's with id="1" will show, but div's with id="2" will be hidden. I can get everything to show, but not just id="1".

Here is my code, what am I doing wrong?

$(event.target.id)show(); $(event.target.id:not).hide();

Here is the full code:

	//grab values from attributes assigned in xsl
	var qtID = $(this).attr("id");

	// make id to show comment (#23453-3djis-im37vk9-fkifhf7)
	var ccID = '#' + qtID;


	//show only comments of matching ccID that were clicked
	$("#item-comments-listing").show();
	$(event.target.id)show();
	$(event.target.id:not).hide();

Any ideas?

link|flag
vote up 12 vote down

In jQuery event.target always refers to the element that triggered the event, where 'event' is the parameter passes to the function. http://docs.jquery.com/Events_(Guide)

$(document).ready(function() {
    $("a").click(function(event) {
        alert(event.target.id);
    });
});

Note also that 'this' will also work, but that it is not a jQuery object, so if you wish to use a jQuery function on it then you must refer to it as '$(this)', e.g.:

$(document).ready(function() {
    $("a").click(function(event) {
        // this.append wouldn't work
        $(this).append(" Clicked");
    });
});
link|flag
1  
Wow! Thanks. Didn't realize that jQuery abstracted that so well. You rock! I would think it would still have the difference between (this) and (event.target) -- being object you bound the event to vs. the object that received the event. – Hafthor Sep 8 '08 at 17:12
Unfortunately, event.target doesn't permit access to its custom attributes. To do that, one must use $(this).attr("organization:thingy");. – Zian Choy Sep 8 at 7:00
vote up 0 vote down

that works - thanks :)

link|flag

Your Answer

Get an OpenID
or

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