Enable the javascript debugger in the Page Inspector

  1. In IE9 (only one time): Tools > Internet Options > Advanced tab > In Browsing category > Clear “Disable script debugging” check boxes (both) > restart IE.

  2. In VS 2012: Run the Page Inspector ( when javascript error box opens, click No ! )

  3. Choose from VS menu: DEBUG > Attach to process…

  4. Select “WebBrowserServer.exe” and click Attach

  5. In Page Inspector window click the Refresh icon.

Debugging works pretty well, but it’s one condition. Don’t insert any breakpoints in your code (or clear them before – DEBUG > Delete All Breakpoints). There can cause a lot of problems – from hanging and frozing to entirely crashing your VS.

Leave a Comment