vote up 3 vote down star

I recently installed VS 6.0 after installing VS 2008 and overwrite JIT settings .. when i started VS 2008 option dialog .. it said another debugger has taken over VS 2008 debugger and I asked me to reset .. so I did ..

Now everything works fine except javascript debugging. I am unable to debug javascript .. I can set breakpoint .. but in debug mode when I hover the breakpoint it says "The breakpoint will not currently be hit. The document is not loaded" ..

How can I solve this issue? Can I reset JIT Settings?

flag

50% accept rate

7 Answers

vote up 1 vote down

Hi

It sounds like your script debugging is disabled. To enable it goto, tools internet options, advanced and make sure disable script debugging is unticked.

What I also found helps is if you put a

"debugger;"

line in your javascript. Remeber that if you put a debugger statement on the first line in a function it will not attach the debugger, as far as I am aware that is a known bug with the implemention of the javascript debugger engine.

var myFunction = new function()
{
  debugger;
  alert('This will not properly attach the debugger');
}

A workaround to that is:

var myFunctionThatDoesAttachTheDebugger = new function()
{
    var x = 0;
    debugger;
    alert('this should work and attach the debugger');
}

A very usefull way I have also found, is by opening the website you want to debug, and then simply type the following in the url bar:

javascript:debugger;

That will also launch the debugger and give you a opportunity to attach the debugger.

Hope it helps

Rihan Meij

link|flag
vote up 1 vote down check

I guess I have to reinstall Visual Studio 2008 and see if that solves this problem

link|flag
A simple solution followed by most of us on MS stack. :) – Pradeep Nov 16 '08 at 9:14
1  
I had to Disable & Re-enable Script Debugging under VS Tools->Options->Debugging-->Just-In-Time and in Internet Explorer options .. and it worked. – Zuhaib Jul 29 at 18:27
vote up 1 vote down

Have you tried using FireBug for JS debugging? It works pretty well as an alternative to VS.

link|flag
vote up 1 vote down

I just wanted to chime in and add that the only resolution for me was a reinstall. Luckily just re-applying VS 2008 SP1 did it. I disabled JIT Debugging in VS6, and picked through all the recommended settings in VS2008. My advice is save yourself the trouble and go get some fresh air while the SP installs. You'll be good as new on the next reboot.

link|flag
vote up -1 vote down

I have script debugging enabled in IE .. putting the debugger keyword says "There is no source code available fro the current location"

The debugger is already attached to the ie process and type is script ..

I manually throwed error .. and then when ie prompted "Would you like to debug" I pressed yes and choose Visual Studio 2008 (With my project opened) .. it worked .. and then my breakpoints were hitting as usual .. untill I stoped the debugger and restarted it. Everything was same as before; No javascript debugging.

Any help?

link|flag
Be so kind, use comments feature for comments. This is not an answer at all. – Arnis L. Jun 12 at 11:40
vote up -1 vote down

I am facing the same problem, I did the same way as Kent (Installed VS 6.0 after VS 2008). If you found any soultion please let me know at mrkk30100@gmail.com

link|flag
vote up -1 vote down

I too am faced with this problem and can't seem to find any solution. Everyone gives the same advice -Make sure script debugging is enabled in browser and IDE -Delete Visual Studio temp files

I can see no logic reason for me to be getting this error and I can't resolve it :(

link|flag
Disable & Re-enable Script Debugging under VS Tools->Options->Debugging-->Just-In-Time and in Internet Explorer options. Clear your internet temporary files and check again .. it should work. – Zuhaib Aug 26 at 7:22

Your Answer

Get an OpenID
or

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