Here’s a useful debugging plugin for jQuery. It will list the handler/’s of any event binded to any element: The Code: // UPDATED -> NOW WORKS WITH jQuery 1.3.1 $.fn.listHandlers = function(events, outputFunction) { return this.each(function(i){ var elem = this, dEvents = $(this).data('events'); if (!dEvents) {return;} $.each(dEvents, function(name, handler){ if((new RegExp('^(' + (events === '*'