How do you get JavaScript/jQuery Intellisense Working in VS 2008? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T02:06:07Zhttp://stackoverflow.com/feeds/question/59766http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-200830How do you get JavaScript/jQuery Intellisense Working in VS 2008?Mark Struzinski2008-09-12T19:03:27Z2009-07-23T19:10:56Z
<p>I thought JQuery Intellisense was supposed to be improved with SP1. I even downloaded an annotated version of jquery 1.2.6, but intellisense will not work in a separate jscript file. I have the jquery library referenced first on my web page in the tag. Am I doing anything wrong?</p>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/59770#5977035Answer by Jason Bunting for How do you get JavaScript/jQuery Intellisense Working in VS 2008?Jason Bunting2008-09-12T19:06:09Z2009-07-23T19:10:56Z<p>At the top of your external js file, add the following:</p>
<pre><code>/// <reference path="jQuery.js"/>
</code></pre>
<p>Make sure the path is correct, relative to the file's position in the folder structure, etc.</p>
<p>Also, any references need to be at the top of the file, before <em>any</em> other text, including comments - literally, the very first thing in the file. Hopefully future version of VS will work regardless of where it is in the file, or maybe they will do something altogether different...</p>
<p>Once you have done that and <em>saved the file</em>, hit CTRL+SHIFT+J to force VS to update Intellisense.</p>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/199940#1999409Answer by Chris Pietschmann for How do you get JavaScript/jQuery Intellisense Working in VS 2008?Chris Pietschmann2008-10-14T03:37:07Z2008-11-16T06:47:59Z<p>You'll want to look at this link:</p>
<p><a href="http://blogs.ipona.com/james/archive/2008/02/15/JQuery-IntelliSense-in-Visual-Studio-2008.aspx" rel="nofollow">http://blogs.ipona.com/james/archive/2008/02/15/JQuery-IntelliSense-in-Visual-Studio-2008.aspx</a></p>
<p>UPDATE: There is a new HotFix for Visual Studio 2008 and a new jQuery Intellisense Documentation file that brings full jQuery Intellisense to VS'08. Below are links to get these two:</p>
<p><a href="http://blogs.msdn.com/webdevtools/archive/2008/11/07/hotfix-to-enable-vsdoc-js-intellisense-doc-files-is-now-available.aspx" rel="nofollow">http://blogs.msdn.com/webdevtools/archive/2008/11/07/hotfix-to-enable-vsdoc-js-intellisense-doc-files-is-now-available.aspx</a></p>
<p><a href="http://blogs.msdn.com/webdevtools/archive/2008/10/28/rich-intellisense-for-jquery.aspx" rel="nofollow">http://blogs.msdn.com/webdevtools/archive/2008/10/28/rich-intellisense-for-jquery.aspx</a></p>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/271359#27135911Answer by JD Courtoy for How do you get JavaScript/jQuery Intellisense Working in VS 2008?JD Courtoy2008-11-07T06:06:33Z2008-11-07T14:13:06Z<p>There is an officially supported jQuery documentation javascript file for Visual Studio 2008. This file is only an interim fix until MS releases a hotfix that will more adequately address the issue.</p>
<p>Embedded in ASPX:</p>
<pre><code><% if (false) { %>
<script src="jquery-1.2.6-vsdoc.js" type="text/javascript"></script>
<% } %>
</code></pre>
<p>Embedded in JS:</p>
<pre><code>/// <reference path="jquery-1.2.6-vsdoc.js" />
</code></pre>
<p>Pick it up here: <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6-vsdoc.js" rel="nofollow">jquery-1.2.6-vsdoc.js</a></p>
<p><strong>References</strong>:</p>
<ul>
<li><a href="http://blogs.msdn.com/webdevtools/archive/2008/10/28/rich-intellisense-for-jquery.aspx" rel="nofollow">Rich Intellisense for jQuery</a></li>
<li><a href="http://www.hanselman.com/blog/ASPNETAndJQuery.aspx" rel="nofollow">Scott Hanselman - ASP.Net and jQuery</a></li>
</ul>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/285970#2859701Answer by Alan Oursland for How do you get JavaScript/jQuery Intellisense Working in VS 2008?Alan Oursland2008-11-13T00:56:06Z2008-11-13T03:38:19Z<p>You shouldn't need to actually reference the "-vsdoc" version. If you put the jquery-1.2.6-vsdoc.js in the same directory as jquery-1.2.6.js then Visual Studio will know to covert a jquery-1.2.6.js reference to jquery-1.2.6-vsdoc.js.</p>
<p>I think that will actually work for any file.</p>
<p>Hmmm... that gives a good workaround for another question on this site...</p>
<p>Edit: This feature only works with VS2008 Service Pack 1.</p>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/334742#3347420Answer by David Murdoch for How do you get JavaScript/jQuery Intellisense Working in VS 2008?David Murdoch2008-12-02T17:23:44Z2008-12-02T17:23:44Z<p>for inline javascript use:</p>
<p>/// <reference path="~\js\jquery-vsdoc.js"/></p>
<p>note the BACKslashes.</p>
<p>this will not work:</p>
<p>/// <reference path="~/js/jquery-vsdoc.js"/></p>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/589373#5893730Answer by roman m for How do you get JavaScript/jQuery Intellisense Working in VS 2008?roman m2009-02-26T06:31:00Z2009-02-26T06:31:00Z<p>make sure you're not using a minimized jQuery file</p>
<p>Ctrl+Shift+J to make it work after adding js files to the project</p>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/940270#9402701Answer by nikmd23 for How do you get JavaScript/jQuery Intellisense Working in VS 2008?nikmd232009-06-02T15:38:54Z2009-06-02T15:38:54Z<p>If you are including the annotated jquery file in your source solely for intellisense, I recommend leveraging preprocessor directives to remove it from your view when you compile. Ala:</p>
<pre><code><% #if (false) %>
<!-- This block is here for jquery intellisense only. It will be removed by the compiler! -->
<script type="text/javascript" src="Scripts/jquery-1.3.2-vsdoc.js"></script>
<% #endif %>
</code></pre>
<p>Then later in your code you can <em>really</em> reference jQuery. This is handy when using the <a href="http://code.google.com/apis/ajaxlibs/" rel="nofollow">Google AJAX Libraries API</a> because you get all the benefits Google provides you, plus intellisense.</p>
<p>Here is a sample of using the Libraries API:</p>
<pre><code><script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.3.2", { uncompressed: false });
</script>
</code></pre>