Reputation: 18113
Is there a way to disable javascript debugging when using Visual Studio with IE9?
Upvotes: 6
Views: 9946
Reputation: 820
If the disable checkboxes in IE doesn't work for youm then in VS go to
Tools > Options > Debugging > Just-In-Time > Uncheck Script Option.
This worked for me.
Upvotes: 0
Reputation: 722
Upvotes: 0
Reputation: 1778
You can also disable all script debugging in VS via: reg add HKLM\SOFTWARE\Microsoft\VisualStudio\9.0\AD7Metrics\Engine{F200A7E7-DEA5-11D0-B854-00A0244A1DE2} /v ProgramProvider /d {4FF9DEF4-8922-4D02-9379-3FFA64D1D639} /f
Upvotes: 1
Reputation: 440
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/)
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.
Upvotes: 5
Reputation: 1620
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
Upvotes: 5