7

Is there any way i could get a list of events that have been fired in the DOM? I don't want to trace by adding breakpoints.

Am looking for something like an internal browser log with the order of the events being fired for the page that is being loaded. This should include all events, even the likes of mouseup, mousedown.

imbecile
  • 468
  • 4
  • 23
  • This question has been answered here http://stackoverflow.com/questions/446892/how-to-find-event-listeners-on-a-dom-node – Elise Chant Jan 04 '14 at 10:05

2 Answers2

1

If you're on chrome, you can also install an extension called "Visual Event" works pretty good to me, and it list all DOM events.

Link to chrome web store

Javis Perez
  • 4,130
  • 3
  • 23
  • 27
0

Firebug offers a "log events" option that shows all DOM events being fired inside an element (can be used on body element).

Just inspect the HTML, right click on an element and click Log Events (tested on Firefox)

cernunnos
  • 2,766
  • 1
  • 18
  • 18