Tagged Questions
1
vote
4answers
941 views
can not hit breakpoint inside of .js file
I upgraded to win 8. Now I run my VS 2012 under admin privileges and I'm creating a website in MVC 4. I checked different solutions online and none have worked. I have a javascript file in my solution ...
2
votes
0answers
45 views
Visual Studio 2010 - Debugger is not executing current Javascript source code
I've never seen this before and I'm getting very frustrated. When I run the VS 2010 debugger, it seems to remember and run "old" Javascript code which is not there anymore. When I step through the ...
0
votes
1answer
42 views
Javascript line/carriage returns not working
I'm having a problem that seems extremely easy/embarrassing on the surface but I'm at a loss at the moment.
There's a lot of backstory involved with the functions, but I'll try to keep it as concise ...
1
vote
0answers
221 views
How to get immediate Visual Studio 2012 javascript debugging when attaching to IE10?
When I start a web application with VS2012 in debug mode, and the javascript in the page raises an exception this happens:
VS - debug (F5)
IE10 opens and the source file with the error line is ...
2
votes
0answers
170 views
How to integrate JavaScript Compiler (like Jurassic, ClearScript) into Visual Studio 2010 shell
I have a project in which I have to support javascript debugging from Jurassic or ClearScript or any other open source java script compiler for .net into to the Visual Studio 2010 Isolated shell. My ...
0
votes
1answer
172 views
Why won't Visual Web Developer act as my Javascript debugger for IE7?
I need to debug some JS that isn't working in IE7, so I installed Visual Web Developer 2010 Express into my IE7 virtual machine, with the intention of using it to debug whatever I want. But when I get ...
19
votes
2answers
22k views
Enable the javascript debugger in the Page Inspector
Visual Studio 2012 comes with the very nice Page Inspector. I like it! Problem though, I haven't found how (if?) I can turn on JavaScript debugging. Could someone point me in the right direction?
0
votes
2answers
328 views
Attach VS2010 to IE9 with PowerShell to debug javascript
Problem (from nuget PowerShell):
launch IIS Express (website is in a folder) [done]
launch IE9 to the URL [done]
attach current VisualStudio instance to IIS to debug .net code [done]
attach current ...
-1
votes
4answers
105 views
Line of javascript is being skipped and causing an error below in code
I am running the visual studio 2010 debugger to try and debug a javascript script, and it skips over this line:
var selectedStatus = "assigned"
and then later throws an error when trying to use ...
2
votes
2answers
714 views
Is it possible to have different javascript files for debugging and production in web application?
I'd like to have different versions of .js javascript files in my ASP.NET WebForms application (VS 2008):
the full-blown version, which comments and so on
the minified version, for production
Is ...