How do you get JavaScript/jQuery Intellisense Working in VS 2008? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T02:06:07Z http://stackoverflow.com/feeds/question/59766 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008 30 How do you get JavaScript/jQuery Intellisense Working in VS 2008? Mark Struzinski 2008-09-12T19:03:27Z 2009-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#59770 35 Answer by Jason Bunting for How do you get JavaScript/jQuery Intellisense Working in VS 2008? Jason Bunting 2008-09-12T19:06:09Z 2009-07-23T19:10:56Z <p>At the top of your external js file, add the following:</p> <pre><code>/// &lt;reference path="jQuery.js"/&gt; </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#199940 9 Answer by Chris Pietschmann for How do you get JavaScript/jQuery Intellisense Working in VS 2008? Chris Pietschmann 2008-10-14T03:37:07Z 2008-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#271359 11 Answer by JD Courtoy for How do you get JavaScript/jQuery Intellisense Working in VS 2008? JD Courtoy 2008-11-07T06:06:33Z 2008-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>&lt;% if (false) { %&gt; &lt;script src="jquery-1.2.6-vsdoc.js" type="text/javascript"&gt;&lt;/script&gt; &lt;% } %&gt; </code></pre> <p>Embedded in JS:</p> <pre><code>/// &lt;reference path="jquery-1.2.6-vsdoc.js" /&gt; </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#285970 1 Answer by Alan Oursland for How do you get JavaScript/jQuery Intellisense Working in VS 2008? Alan Oursland 2008-11-13T00:56:06Z 2008-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#334742 0 Answer by David Murdoch for How do you get JavaScript/jQuery Intellisense Working in VS 2008? David Murdoch 2008-12-02T17:23:44Z 2008-12-02T17:23:44Z <p>for inline javascript use:</p> <p>/// &lt;reference path="~\js\jquery-vsdoc.js"/&gt;</p> <p>note the BACKslashes.</p> <p>this will not work:</p> <p>/// &lt;reference path="~/js/jquery-vsdoc.js"/&gt;</p> http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/589373#589373 0 Answer by roman m for How do you get JavaScript/jQuery Intellisense Working in VS 2008? roman m 2009-02-26T06:31:00Z 2009-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#940270 1 Answer by nikmd23 for How do you get JavaScript/jQuery Intellisense Working in VS 2008? nikmd23 2009-06-02T15:38:54Z 2009-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>&lt;% #if (false) %&gt; &lt;!-- This block is here for jquery intellisense only. It will be removed by the compiler! --&gt; &lt;script type="text/javascript" src="Scripts/jquery-1.3.2-vsdoc.js"&gt;&lt;/script&gt; &lt;% #endif %&gt; </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>&lt;script type="text/javascript" src="http://www.google.com/jsapi"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; google.load("jquery", "1.3.2", { uncompressed: false }); &lt;/script&gt; </code></pre>