Is there a way to disable javascript debugging when using Visual Studio with IE9?
-
Disable the IE9 debugger so that the debugger defers to visual studio?Quintin Robinson– Quintin Robinson2011-03-21 17:36:05 +00:00Commented Mar 21, 2011 at 17:36
-
@Quintin Robinson, I would like do not use any javascript debugger at all.Cleiton– Cleiton2011-03-21 18:11:10 +00:00Commented Mar 21, 2011 at 18:11
5 Answers
If you click the Tools (Alt+X) button, then click the Internet Options menu item.
In the Advanced Tab, and in the Browsing category:
Check Disable script debugging (Internet Explorer)
This should disable the Javascript debugger
6 Comments
I tried the solution provided by Dotmister, but it didn't work on my Vista (x64), VS2010 and IE9.
However I tried the following and it worked (source: http://www.visualstudiotutor.com/2011/02/disable-stopjavascript-debugging-in-visual-studio/)
- Open the application Property page and select the Web tab
- Select “Start External Program” and set the path to iexplorer.exe
- Enter the URL in the Command line argument option
- Hit F5 to commence debugging.
My debugger was very slow when I hit a breakpoint, partly because I had the Edit and Continue enabled (you can disable it in VS under Tools -> Options -> Debuggins -> Edit and Continue) and partly because I could not disable JavaScript debugging.
Now it is significantly faster.