In the VS2008 IDE, if I inserted a 'debugger' statement in my Javascript code, when the execution halted, I could go to the Immediate or Command Window and use jQuery like this:
? $(...
Where the "..." represents a combination of selectors & methods.
But now, in the VS2012 IDE this no longer works. Instead, I get this message: "The name '$' does not exist in the current context"
What do I need to do to reactivate the jQuery Debugging functionality like I had before?
Robert