views:

27

answers:

1

I'm viewing a page, and want to know which event is fired when I click on a button, and I want to trace through the .js files to help me learn what is going on.

Is this possible?

+7  A: 

When you have the script panel enabled, you can click the pause button on the left to stop all JavaScript interaction. When you then press the button it stops and you can use the debugger to step through the code.

poke