JamesBrownIsDead
JamesBrownIsDead

Reputation: 81

Debugging JavaScript in VS

Whenever I set a breakpoint in JavaScript in Visual Studio, the debugger never breaks at the point. When I put my mouse over the breakpoint at run-time, it says "This breakpoint will currently not be hit. No symbols have been loaded for this document."

What does this mean? How do I enable JavaScript debugging/breakpoints?

Upvotes: 0

Views: 190

Answers (1)

i_am_jorf
i_am_jorf

Reputation: 54600

You have to enable Javascript debugging in Internet Explorer: Tools -> Internet Options -> Advanced, then uncheck both "Disable Script Debugging" options.

Upvotes: 2

Related Questions