views:

220

answers:

1

Is it possible to stop visual studio from debugging external javascript? We have a window which displays external webpage. If the page contains bad javascript then my entire session comes to a halt and breaks. Hitting continue won't move past the problem.

It's really irritating and tedious, is there an equivalent setting to "just debug my code"?

Edit : I don't want to disable javascript debugging totally, just stop it from debugging other people's crappy code..

Cheers

+3  A: 

Check this article:

Debugging client JavaScript in Visual Studio 2005

Another alternative for debugging JavaScript is Firebug. I think it's one of the best and complete JS debuggers out there.

CMS