Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View javascript events in browser

I'm using Firefox. Is there something out there that will show me all the JavaScript events that are getting triggered in real time?

like image 924
7wp Avatar asked Nov 03 '10 16:11

7wp


1 Answers

You can right-click an element in Firebug's HTML tab and click Log Events.

You will then see every event received by that element in the Console tab.
You can even click one of them to explore the properties of the event object.

like image 134
SLaks Avatar answered Oct 28 '22 22:10

SLaks