vote up 0 vote down star

The javascript command 'debugger;' will start a debugger.

 debugger;

But (with Visual Studio 2008 installed) I cannot seem to figure out how to get this to break into the IE8 debugger. It will give me a list of choices such as VS2008, VS2010, Microsoft Script debugger.

If I do the following it will break into the (lightning fast) VS2008 debugger...

 throw Error("d");

... but I want to get it to do so when I use the 'debugger;' command. How can I do this

flag

40% accept rate
theres gotta be an answer to this! bounty time – Simon Nov 23 at 4:31

1 Answer

vote up 2 vote down check

Step 1: Open the page you want to debugger
Step 2: Open IE8 Debugger and click Script -> Start Debugging
Step 3: Then It will break into the IE8 debugging while execute the code.

Hope it helps!

link|flag

Your Answer

Get an OpenID
or

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