up vote 2 down vote favorite
share [g+] share [fb]

I'm trying to debug javascript code just by adding a breakpoint in VS2008, but the debugger's not stopping. Do I have to do some special setup in order to enable javascript debugging? Or does the code have to be in a separate js file?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

Did you uncheck the checkboxes in the settings

Tools-->Internet Options-->Advanced-->Browsing [heading]-->Uncheck "Disable Script Debugging (Internet Explorer)" and Uncheck "Disable Script Debugging (Other)"

Sometimes you need to restart the browser to get VS2008 to recognize that it has made some changes.

Have you tried to stick the "debugger;" keyword into your JavaScript file? This usually never fails me.

If you have IE8, you can debug right in the browser itself.

link|improve this answer
Where have I to write debugger? – abatishchev Apr 6 '10 at 16:31
in the JavaScript file where you want it to break. – epascarello Apr 7 '10 at 0:50
feedback

Any particular browser? Mainly it works with IE, and needs script debugging enabled in the IE internet options (advanced => browsing).

link|improve this answer
feedback

I don't know about VS2008, but I know I've never been able to get the debugger to stop on a breakpoint in an aspx (as opposed to a linked js file).

If you are not running this in a project, but just debugging on the fly, be sure to attach to the browsers' process.

link|improve this answer
feedback

I know it's not what you asked, but I gotta plug Firebug for JS debugging, including breakpoints, watch statements, stepping, and a live JS console.

link|improve this answer
Thanks, I already have that anyways. – Raúl Roa Jan 12 '09 at 7:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.