Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008 - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T07:26:57Zhttp://stackoverflow.com/feeds/question/542439http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/542439/getting-intellisense-to-work-for-jquery-and-javascript-in-js-files-using-visual6Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008minty2009-02-12T17:28:48Z2009-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><script type="text/javascript" src="./js/myhappyjavascript.js"></script>
</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#54245312Answer by Andrey Shchekin for Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008Andrey Shchekin2009-02-12T17:32:00Z2009-02-12T17:32:00Z<p>Sure, add</p>
<pre><code>/// <reference path="path-to-jquery" />
</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#5434742Answer by Glenn Lang for Getting intellisense to work for JQuery and javascript in .js files using Visual Studio 2008Glenn Lang2009-02-12T21:46:09Z2009-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>/// <reference path="mypage.aspx" />
</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>