Firebug: how to break any javascript activity?

I really need to find out what's going on with a page with very complex javascript code. Is there a way to just break with firebug on whatever javascript code is running?

thank.

+3


source to share


1 answer


Try the keyword debugger;

This will stop the javascript and start the debugger. Additional Information



+3


source







All Articles