vote up 0 vote down star
4

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?

flag

67% accept rate

1 Answer

vote up 3 vote down check

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.

link|flag
does this only work for event handlers assigned with jQuery? – Russ Cam Aug 5 at 22:27
Yes Russ, that i true. But inline handlers are grim and deserve not to be shown! – redsquare Aug 5 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 at 22:41

Your Answer

Get an OpenID
or

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