Debug javascript Visual Studio 2013

4

I need some help, please.

Next I had a machine with Win 7 32bits and I was able to debug the normal javascript in Visual Studio 2013, put the breakpoint and it would stop beauties.

Then I switched to Win 8 64 bit and now I can not anymore, because it does not stop at breakpoint.

When I installed VS2013 on the new machine, I imported the settings from the old machine and everything came out right. I even compared it to TOOLS - > OPTIONS - > Debugging and everything is the same.

Detail that when I installed VS2013 on the previous machine, I did not have to configure anything. I saw in another forum that update 2 of VS2013 resolved, I installed update 3 but it remains the same.

Another thing is that I have already cleared the option to disable the debugger in IE 11.

If someone has an idea, thank you.

    
asked by anonymous 18.08.2014 / 19:31

1 answer

1

You can also debug javascript in VS 2013 by including the term "debugger" in the javascript line you want debugging to stop.

debugger;
    
26.08.2014 / 22:58