How Eventbug Actually Works
Eventbug is a add-on for Firebug (yes, add-on for add-on), which is aimed to track all events assigned to DOM elements. The question is - how it actually works? Since, generally sp
Solution 1:
It is using nsIEventListenerService which is an internal API available to Firefox add-ons. In fact, it has been introduced specifically for Firebug, see bug 448602.
Post a Comment for "How Eventbug Actually Works"