Is there any way to view what functions / code are attached to any event for a DOM element? Using Firebug or any other tool.
|
|
Event handlers attached using traditional Event handlers attached using DOM Level 2 Events A debugging tool as browser extension could get access to these kinds of listeners, but I'm not aware of any that actually do. Some JS frameworks leave enough of a record of event binding to work out what they've been up to. Visual Event takes this approach to discover listeners registered through a few popular frameworks. |
|||||||
|
|
The Elements Panel in Google Chrome Developer tools has had this since Chrome releases in mid 2011 and Chrome developer channel releases since 2010. Also, the event listeners shown for the selected node are in the order in which they are fired through the capturing and bubbling phases. Hit command + option + i on Mac OSX and Ctrl + Shift + i on Windows to fire this up in Chrome
|
||||
|
|
|
You can view directly attached events (element.onclick = handler) by looking at the DOM. You can view jQuery-attached events in Firefox using FireBug with FireQuery. There doesn't appear to be any way to see addEventListener-added events using FireBug. However, you can see them in Chrome using the Chrome debugger. |
|||
|
|
