up vote 185 down vote favorite
117
share [g+] share [fb]

I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At one point, some of the events that were bound to particular elements, are not fired and simply stop working.

If I had a capability to edit the application source, I would drill down and add a bunch of Firebug console.log() statements and comment/uncomment pieces of code to try to pinpoint the problem. But let's assume I cannot edit the application code and need to work entirely in Firefox using Firebug or similar tools.

Firebug is very good at letting me navigate and manipulate the DOM. So far, though, I have not been able to figure out how to do event debugging with Firebug. Specifically, I just want to see a list of event handlers bound to a particular element at a given time (using Firebug Javascript breakpoints to trace the changes). But either Firebug does not have the capability to see bound events, or I'm too dumb to find it. :-)

Any recommendations/ideas? Ideally, I would just like to see and edit events bound to elements, similarly to how I can edit DOM today.

link|improve this question

feedback

11 Answers

up vote 134 down vote accepted

See How to find event listeners on a DOM node.

In a nutshell, assuming at some point an event handler is attached to your element (eg): $('#foo').click(function() { console.log('clicked!') });

You inspect it like so:

  • jQuery 1.3.x

    var clickEvents = $('#foo').data("events").click;
    jQuery.each(clickEvents, function(key, value) {
      console.log(value) // prints "function() { console.log('clicked!') }"
    })
    
  • jQuery 1.4.x

    var clickEvents = $('#foo').data("events").click;
    jQuery.each(clickEvents, function(key, handlerObj) {
      console.log(handlerObj.handler) // prints "function() { console.log('clicked!') }"
    })
    

See jQuery.fn.data (where jQuery stores your handler internally).

link|improve this answer
Thanks! This is what I was looking for. This solution + breakpointing lets me figure it out. – Jaanus Feb 20 '09 at 20:37
57  
alert() is bad bad bad for debugging. It's a horrorshow for asynchronous events and trecherous in animation or mouseevent stuff. console.log() always gives more information, it's formatted nicely and its non-modal. Always use console.log, die alert die. – Paul Irish Dec 20 '10 at 0:09
1  
How would this look like for jQuery 1.6? – Pilgrim Sep 15 '11 at 14:05
3  
FYI: This will not display events that weren't attached with jQuery – Juan Mendes Oct 7 '11 at 18:39
1  
Totally agree about console.log(), however it should be hedged with something like if (window.console) in case it gets left in the code (much easier to do than with alert()) and breaks IE. – thepeer Jan 24 at 16:46
feedback

There's a nice bookmarklet called Visual Event that can show you all the events attached to an element. It has color-coded icons for different types of events (mouse, keyboard, etc.).

link|improve this answer
Thanks! This is almost there, but for some (more problematic) elements, it shows the handler is just { return false; } even if a handler actually exists. – Jaanus Feb 20 '09 at 20:35
This bookmarklet seems to have stopped working and their website is down :-(. It seems that the bookmarklet calls a Javascript file that was on their site – Casebash Jul 18 '10 at 23:19
3  
@Casebash: It's working again. – Matthew Crumley Jul 21 '10 at 3:22
1  
awesome gem! thanks for sharing. – Sam3k Oct 20 '10 at 21:15
2  
Note that since this runs in content JavaScript, it gets its data by querying JavaScript libraries. So it will only show events added with a supported library (which includes jQuery). – Matthew Flaschen Sep 25 '11 at 4:57
show 2 more comments
feedback

The Eventbug extension has been released yesterday, see: http://www.softwareishard.com/blog/firebug/eventbug-alpha-released/

Honza

link|improve this answer
Integrates great in Firebug. Thanks for the suggestion! – Husky Sep 29 '10 at 9:11
Jan thank you! No, really! – Liutauras Feb 11 '11 at 16:48
feedback

You could use FireQuery. It shows any events attached to DOM elements in the Firebug's HTML tab. It also shows any data attached to the elements through $.data.

link|improve this answer
This is a great plugin, thanks! – Jeff Olson Sep 30 '10 at 20:16
feedback

Here's a plugin which can list all event handlers for any given element/event:

$.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 === '*' ? '.+' : events.replace(',','|').replace(/^on/i,'')) + ')$' ,'i')).test(name)) {
               $.each(handler, function(i,handler){
                   outputFunction(elem, '\n' + i + ': [' + name + '] : ' + handler );
               });
           }
        });
    });
};

Use it like this:

// List all onclick handlers of all anchor elements:
$('a').listHandlers('onclick', console.info);

// List all handlers for all events of all elements:
$('*').listHandlers('*', console.info);

// Write a custom output function:
$('#whatever').listHandlers('click',function(element,data){
    $('body').prepend('<br />' + element.nodeName + ': <br /><pre>' + data + '<\/pre>');
});

Src: (my blog) -> http://james.padolsey.com/javascript/debug-jquery-events-with-listhandlers/

link|improve this answer
feedback

The WebKit Developer Console (found in Chrome, Safari, etc.) lets you view attached events for elements.

link|improve this answer
feedback

jquery stores events in the following: $("a#somefoo").data("events")

doing a console.log($("a#somefoo").data("events")) should list the events attached to that element.

link|improve this answer
feedback

As a colleague suggested, console.log > alert:

var clickEvents = $('#foo').data("events").click;
jQuery.each(clickEvents, function(key, value) {
    console.log(value);
})
link|improve this answer
feedback

There are a few very good tools for debugging jquery running as Firefox plugins. I wrote an article about this on my blog at http://johnayling.com/programming-tips/debugging-jquery-code.

If you look halfway down the article I show you how to use firefinder to debug jquery events.

link|improve this answer
1  
You might consider summarizing the relevant bits of your blog posting for the benefit of those reading the answers here. It's fine to include a link to your blog for more context or detail. But a direct answer is always appreciated, and based on your link you have a good bit to share here. – GargantuChet Jul 5 '11 at 4:35
feedback

According to this thread, there is no way in Firebug to view what events are attached to listeners on a DOM element.

It looks like the best you can do is either what tj111 suggests, or you could right-click the element in the HTML viewer, and click "Log Events" so you can see which events are firing for a particular DOM element. I suppose one could do that to see what events could be firing off particular functions.

link|improve this answer
feedback

Looks like FireBug crew is working on an EventBug extension. It will add another panel to FireBug - Events.

"The events panel will list all of the event handlers on the page grouped by event type. For each event type you can open up to see the elements the listeners are bound to and summary of the function source." EventBug Rising

Although they cannot say right now when it will be released.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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