Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to determine whether an element has a click handler, or a change handler, or any kind of event handler bound to it using jQuery?

Furthermore, is it possible to determine how many click handlers (or whatever kind of event handlers) it has for a given type of event, and what functions are in the event handlers?

share|improve this question

6 Answers

up vote 75 down vote accepted

you can get this information from the data cache.

//log them to the console (firebug, ie8)

console.dir( $('#someElementId').data('events') );

//or iterate them

jQuery.each($('#someElementId').data('events'), function(i, event){

    jQuery.each(event, function(i, handler){

        console.log( handler.toString() );

    });

});

Another way is you can use the following bookmarklet but obviously this does not help at runtime.

share|improve this answer
2  
does this only work for event handlers assigned with jQuery? – Russ Cam Aug 5 '09 at 22:27
4  
Yes Russ, that i true. But inline handlers are grim and deserve not to be shown! – redsquare Aug 5 '09 at 22:28
It worked! At least it works with events assigned with jQuery. I haven't tested it with events assigned otherwise. Thank you. – mikez302 Aug 5 '09 at 22:41
1  
Great answer. I just want to mention that this does not work for events attached with live (jQuery 1.4.4, FF). – Atticus Jul 12 '12 at 8:26
21  
Just a note: $(element).data('events') has been removed in jQuery 1.8. For "debugging, you can use $._data(element, 'events'), but it's undocumented (and may change). blog.jquery.com/2012/08/09/jquery-1-8-released – Rocket Hazmat Aug 16 '12 at 18:43
show 9 more comments

Killing off the binding when it does not exist yet is not the best solution but seems effective enough! The second time you ‘click’ you can know with certainty that it will not create a duplicate binding.

I therefore use die() or unbind() like this:

$("#someid").die("click").live("click",function(){...

or

$("#someid").unbind("click").bind("click",function(){...
share|improve this answer
2  
That helped me! Thanks :) – Nima Aug 14 '11 at 19:05
2  
+1 very neat even though it doesn't answer the question. – Noel Abrahams Nov 23 '11 at 20:41
This is the best way, and working way,, worked for me when other ways failed – Mazhar Ahmed Mar 27 '12 at 6:39
I'd like to give you a 1000 +1's for this simple solution. – Subin Feb 24 at 7:25

I wrote a plugin called hasEventListener which exactly does that :

http://github.com/sebastien-p/jquery.hasEventListener

Hope this helps.

share|improve this answer
1  
This plugin should be the accepted answer for anyone who is using jQuery. – apiguy Jan 11 '11 at 22:29
Hopefully I can save someone else some time. hasEventListener doesn't work for live bound events. (v1.0.5) – SooDesuNe Feb 3 '11 at 21:27
1  
My hasEventListener plugin will be updated this week with now a full support for live and delegated events. – Sebastien P. Feb 22 '11 at 22:41
Why isn't this part of jQuery natively!!! good job +1 – crush May 9 at 17:35

I don't think that the hasEventListener plugin mentioned will handle custom events e.g.

var obj = {id:'test'};
$(obj).bind('custom', function(){
    alert('custom');
}).trigger('custom');

alert($(obj).hasEventListener('custom'));

Also, at least in jQuery 1.5 I think you need to be careful using $(target).data('events') because it returns differently for events that have been bound to objects as above.

You need to do something like:

var events = $(target).data("events");
if(typeof events === "function"){
   events = events.events;
}

I am using this sort of approach and it works but it feels a bit like I am at the mercy of jquery internals and that really I shouldn't be doing it!

share|improve this answer

This works for me: $('#profile1').attr('onclick')

share|improve this answer
it works only if a handler is attached via the "onclick" attribute. How about this case: $('#profile1').click(function(){alert('')});? $('#profile1').attr('onclick') returns undefined. – caligula Mar 29 at 23:44

This solution is no more supported since jQuery 1.8 as we can read on the blog here:

$(element).data(“events”): This is now removed in 1.8, but you can still get to the events data for debugging purposes via $._data(element, "events"). Note that this is not a supported public interface; the actual data structures may change incompatibly from version to version.

So, you should unbind/rebind it or simply, use a boolean to determine if your event as been attached or not (which is in my opinion the best solution).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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