Posts tagged Intellisense
Visual Studio Express + JQuery code hinting : Intellisense not Working [RESOLVED]
May 5th
First I discovered jQuery.
Then I discovered Visual Studio Express 2010.
I was happy.
Then I learned of Intellisense which provides amazing code hinting.
I wanted a pure OOP solution for all my scripting. So when I went setup my .js files to code in, suddenly my jQuery code-hinting and intellisense disappeared.
I needed to know How can I get intellisense to work in sub files and other js files?
The answer was simple, I just had to reference my javascript files to one another with a simple line of code.
///<reference path=”../jquery/jquery-1.4.2.js”/>
That was it! Add 3 slashes and a reference path and code hinting was restored.
Something else I learned was that intellisense has an amazing abiltity to cross-reference all of your variables across multiple files.
So no, just like with FlashDevelop for ActionScript, I can successfully have access to my vars across files. And now intellisense works across multiple files.