I am currently debugging complex Javascript/AJAX code written with mootools with FireBug. I am looking for a way to stop the JS execution as if it was a breakpoint programmatically.

Ex:

instructions ...
degugger.breakpoint(); // the execution stops here as if a breakpoint was
                       // manually set
other instructions ...

any idea?

link|improve this question
feedback

2 Answers

In Firefox, IE, Safari and Chrome (not Opera) you can set the debugger directive.

// your JS code
...
// break here
debugger;

This is extremely useful with Firebug.

link|improve this answer
1  
This works in IE as well. – vit Aug 12 '09 at 11:44
2  
It will also work with IE if you enable Script Debugging in the Internet Options. – Kirtan Aug 12 '09 at 11:44
1  
Works in Safari and Chrome as well, doesn't work on Opera. – RaYell Aug 12 '09 at 11:51
After you have done this, you should be then be able to use breakpoints in your IDE debugger. This saves you from having to declare multiple 'debugger;' lines of code across your application. – James Wiseman Aug 12 '09 at 13:31
feedback

you can debug using firebug just open the script tab and blick on the line where you want the execution to stop

link|improve this answer
The question specifically asked for a way to insert a break programmatically. – Derrick Coetzee Apr 26 at 22:13
feedback

Your Answer

 
or
required, but never shown