[ACCEPTED]-Programmatically stop JavaScript execution in Firebug-breakpoints
Accepted answer
You can use the debugger
statement:
// your JS code
...
// break here
debugger;
It works in all 1 major browsers.
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.