Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T07:26:57Z http://stackoverflow.com/feeds/question/542439 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/542439/getting-intellisense-to-work-for-jquery-and-javascript-in-js-files-using-visual 6 Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008 minty 2009-02-12T17:28:48Z 2009-05-08T15:40:46Z <p>I followed ScottGu's advice on enabling javascript intellisense using a -vsdoc.js file. </p> <p><a href="http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx</a></p> <p>I now get intellisense when I write javascript inside my HTML/ASPX files. I write most of my javascript in separate javascript files that I attach to my code with script tags like this:</p> <pre><code>&lt;script type="text/javascript" src="./js/myhappyjavascript.js"&gt;&lt;/script&gt; </code></pre> <p>In files like this I don't get the intellisense and this is where I need it most. Does anyone know how I can get intellisense on jquery to work there too?</p> http://stackoverflow.com/questions/542439/getting-intellisense-to-work-for-jquery-and-javascript-in-js-files-using-visual/542453#542453 12 Answer by Andrey Shchekin for Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008 Andrey Shchekin 2009-02-12T17:32:00Z 2009-02-12T17:32:00Z <p>Sure, add</p> <pre><code>/// &lt;reference path="path-to-jquery" /&gt; </code></pre> <p>at the very beginning of your js file.</p> http://stackoverflow.com/questions/542439/getting-intellisense-to-work-for-jquery-and-javascript-in-js-files-using-visual/543474#543474 2 Answer by Glenn Lang for Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008 Glenn Lang 2009-02-12T21:46:09Z 2009-02-12T21:46:09Z <p>You can also include a reference to your aspx page at the beginning of your js file and intellisense will behave like you are on the page.</p> <pre><code>/// &lt;reference path="mypage.aspx" /&gt; </code></pre> <p>You might want to take a look at the reference for the reference tag.</p> <p><a href="http://blogs.msdn.com/webdevtools/archive/2007/11/06/jscript-intellisense-a-reference-for-the-reference-tag.aspx" rel="nofollow">http://blogs.msdn.com/webdevtools/archive/2007/11/06/jscript-intellisense-a-reference-for-the-reference-tag.aspx</a></p>