Is it possible to listen to all javascript events?
I'm trying to guess if there's an event triggered after the DOM is modified by an AJAX request.
|
Is it possible to listen to all javascript events? I'm trying to guess if there's an event triggered after the DOM is modified by an AJAX request. |
|||||
|
|
With firebug or web inspector you can use
This prints all events emitted by If you're interested in getting events after the DOM has been manipulated, take a look at Mutation Events. Edit: As far as I know, there is no easy way to intercept all
Needless to say this is extremely hacky and generally ill-advised. |
|||||
|