up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

64% accept rate
theres gotta be an answer to this! bounty time – Simon_Weaver Nov 23 '09 at 4:31
tools -> internet options -> advanced -> uncheck "disable script debugging (internet explorer)" – mahmoud Oct 13 '10 at 21:32
feedback

2 Answers

up vote 2 down vote accepted
+75

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|improve this answer
feedback

If you need to jump into the debugger before you have access to the Start Debugging command, such as in an onLoad handler, you can use any illegal instruction to pop into the IE8 debugger, such as:

null.length;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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