vote up 0 vote down star

Why can't microsoft make setting a breakpoint in visual studio equivalent to adding the "debugger" keyword in javascript? I want to test javascript cross browser in a unified way.

flag

76% accept rate

2 Answers

vote up 2 vote down

Use the debugger keyword instead of setting breakpoints.. if the debugger is enabled, it will break...

debugger; //breakpoint here

As to why they don't work. Firefox doesn't use the MS scrpting engine,so the VS debugger doesn't attach to Firefox.

link|flag
vote up 0 vote down check

Use debugger;

or Sys.Debug.assert() which will hit a debugger statement if assert fails

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.