Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page where some event listeners are attached to input boxes and select boxes. Is there a way to find out which event listeners are observing a particular DOM node and for what event?

Events are attached using 1) prototype's Event.observe 2) DOM's addEventListener 3) as element attribute element.onclick

share|improve this question
   
How are the events attached in the first place? Are you using a library (eg Prototype, jQuery, etc)? – Crescent Fresh Jan 15 '09 at 15:07

8 Answers

up vote 200 down vote accepted

If you just need to inspect what's happening on a page, you might try the Visual Event bookmarklet.

Update: Visual Event 2 available;

share|improve this answer
24  
This tool is awesome, thanks for posting. – Brian Wigginton Oct 26 '10 at 23:43
This is truly a useful tool for visualizing events. – hitautodestruct Jan 5 '11 at 9:11
Great tool!!!!! – Juan Luis Soldi Jun 11 '11 at 21:54
2  
Updated version. – thepeer Jan 24 '12 at 14:34
6  
This adds a jillion elements to the page, many of which are images. Its usefulness is reduced greatly on a page with many event handlers (mine has 17k and Visual Event took about 3 minutes to load). – Tony R Mar 8 '12 at 21:57
show 8 more comments

It depends on how the events are attached. For illustration presume we have the following click handler:

var handler = function() { alert('clicked!') };

We're going to attach it to our element using different methods, some which allow inspection and some that don't.

Method A) single event handler

element.onclick = handler;
// inspect
alert(element.onclick); // alerts "function() { alert('clicked!') }"

Method B) multiple event handlers

if(element.addEventListener) { // DOM standard
    element.addEventListener('click', handler, false)
} else if(element.attachEvent) { // IE
    element.attachEvent('onclick', handler)
}
// cannot inspect element to find handlers

Method C): jQuery

$(element).click(handler);
  • 1.3.x

    // inspect
    var clickEvents = $(element).data("events").click;
    jQuery.each(clickEvents, function(key, value) {
        alert(value) // alerts "function() { alert('clicked!') }"
    })
    
  • 1.4.x (stores the handler inside an object)

    // inspect
    var clickEvents = $(element).data("events").click;
    jQuery.each(clickEvents, function(key, handlerObj) {
        alert(handlerObj.handler) // alerts "function() { alert('clicked!') }"
        // also available: handlerObj.type, handlerObj.namespace
    })
    

(See jQuery.fn.data and jQuery.data)

Method D): Prototype (messy)

$(element).observe('click', handler);
  • 1.5.x

    // inspect
    Event.observers.each(function(item) {
        if(item[0] == element) {
            alert(item[2]) // alerts "function() { alert('clicked!') }"
        }
    })
    
  • 1.6 to 1.6.0.3, inclusive (got very difficult here)

    // inspect. "_eventId" is for < 1.6.0.3 while 
    // "_prototypeEventID" was introduced in 1.6.0.3
    var clickEvents = Event.cache[element._eventId || (element._prototypeEventID || [])[0]].click;
    clickEvents.each(function(wrapper){
        alert(wrapper.handler) // alerts "function() { alert('clicked!') }"
    })
    
  • 1.6.1 (little better)

    // inspect
    var clickEvents = element.getStorage().get('prototype_event_registry').get('click');
    clickEvents.each(function(wrapper){
        alert(wrapper.handler) // alerts "function() { alert('clicked!') }"
    })
    
share|improve this answer
1  
Thx for updating this. It's unfortunate that you have to iterate thru each type of handler. – Keith Bentrup Sep 14 '09 at 18:35
2  
On "Method B" (addEventListener) here's an answer regarding the status of the enumeration facilities for handlers registered with pure DOM Events API: stackoverflow.com/questions/7810534/… – Nickolay Oct 18 '11 at 23:00
1  
This answer is very useful! Thank you for sharing this! I've been having a lot of problem with a piece of jQuery and your answer helped me figure it out! – Gabriel Feb 1 '12 at 14:10
@John: thanks for the comment. You have an example of "real JavaScript" to fetch listeners previously added via addEventListener? – Crescent Fresh Apr 25 '12 at 1:23
4  
@Jan, this does not seem to work for jQuery 1.7.2, is there a different approach for that version ? – tomdemuyt May 30 '12 at 18:26
show 2 more comments

WebKit Inspector in Chrome or Safari browsers now does this. It will display the event listeners for a DOM element when you select it in the Elements pane.

share|improve this answer
4  
I'm not sure it shows all the event handlers; just the single HTML event handler. – huyz Jul 25 '11 at 8:21
1  
This is AWESOME. – Ben Alpert Aug 9 '11 at 2:01
1  
I should mention EventBug plugin for Firebug for completeness <softwareishard.com/blog/category/eventbug/>; – Nickolay Oct 18 '11 at 22:59

It is possible to list all event listeners in JavaScript: It's not that hard; you just have to hack the prototype's method of the HTML elements (before adding the listeners).

function reportIn(e){
    var a = this.lastListenerInfo[this.lastListenerInfo.length-1];
    console.log(a)
}


HTMLAnchorElement.prototype.realAddEventListener = HTMLAnchorElement.prototype.addEventListener;

HTMLAnchorElement.prototype.addEventListener = function(a,b,c){
    this.realAddEventListener(a,reportIn,c); 
    this.realAddEventListener(a,b,c); 
    if(!this.lastListenerInfo){  this.lastListenerInfo = new Array()};
    this.lastListenerInfo.push({a : a, b : b , c : c});
};

Now every anchor element (a) will have a lastListenerInfo property wich contains all of its listeners. And it even works for removing listeners with anonymous functions.

share|improve this answer
This method won't work if you're writing a user script or content script. Not only are likely to be sandboxed these days but how can you guarantee the order of execution? – huyz Jul 25 '11 at 8:22
this method works with chrome/19 and FF/12. order of execution can be guaranteed if you hook this before other scripts – Tzury Bar Yochay Jun 1 '12 at 5:54
3  
Couldn't you just modify Node.prototype instead? That's where HTMLAnchorElement inherits .addEventListener from anyways.' – Esailija Jun 16 '12 at 6:48
2  
You're assuming that the user agent implements prototype inheritance for DOM host objects and allows you to modify them. Neither of those are good ideas: don't modify objects you don't own. – RobG Nov 13 '12 at 0:43

If you have Firebug, you can use console.dir(object or array) to print a nice tree in the console log of any javascript scalar, array, or object. Try: console.dir(clickEvents); or console.dir(window);

share|improve this answer

(Rewriting the answer from this question since it's relevant here.)

When debugging, if you just want to see the events, I recommend either...

  1. Visual Event
  2. The Elements section of Chrome's Developer Tools: select an element and look for "Event Listeners" on the bottom right (similar in Firefox)

If you want to use the events in your code, and you are using jQuery before version 1.8, you can use:

$(selector).data("events")

to get the events. As of version 1.8, using .data("events") is discontinued (see this bug ticket). You can use:

$._data(element, "events")

Another example: write all click events on a certain link to the console:

var $myLink = $('a.myClass');
console.log($._data($myLink, "events").click);

Unfortunately, using $._data this is not recommended except for debugging since it is an internal jQuery structure, and could change in future releases. Unfortunately I know of no other easy means of accessing the events.

share|improve this answer
Visual Event is awesome, it revealed many events otherwise hidden – Michal Kováč Mar 26 at 14:49

Prototype 1.7.1 way

function get_element_registry(element) {
    var cache = Event.cache;
    if(element === window) return 0;
    if(typeof element._prototypeUID === 'undefined') {
        element._prototypeUID = Element.Storage.UID++;
    }
    var uid =  element._prototypeUID;           
    if(!cache[uid]) cache[uid] = {element: element};
    return cache[uid];
}
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.