vote up 5 vote down star
3

I read ScottGu's blog entry (http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx) a while back, and it seems to imply more functionality than I'm seeing. I have VS2008 and its service pack installed, and I am using a new MVC project with the RC1 version of asp.net MVC. I referenced the jquery-1.2.6.js script, and I can see intellisense when I type "$." but anything after that shows nothing. This isn't particularly helpful for a jquery novice like me, so I'm hopeful that I've just forgotten something.

For example, when I try to use the specific script example in Scott's blog post: alt text

I don't get any intellisense action for the "attr" that he shows the tooltip for. Should I expect this intellisense help, and if so, what can I look for to address the problem?

Here's my script reference. It's declared in a master page, FWIW, and my attempted use of jquery is in my page that references this master page.

<head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="~/Content/styles/default.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="~/Content/scripts/jquery-1.2.6.js"></script>
flag

79% accept rate

2 Answers

vote up 7 vote down check

Have you installed the jQuery-vsdoc.js file as well (in the same location as jquery-1.2.6.js)? This file contains the comments for intellisense. It's documented in step 3 of ScottGu's blog post.

Update:

And you also installed the Visual Studio patch?

For me it works (as shown in ScottGu's blog), although I'm using a website project, not MVC. I added the script reference in the master page:

<script src="jquery-1.3.1.js" type="text/javascript"></script>

I get intellisense in both the master page and in content pages (tried it with the code you put in your question).

link|flag
Yeah, that file is there. It seems to be included by default in a new MVC project. I figured I wouldn't see any intellisense at all if that file wasn't in the correct place. – Chris Farmer Feb 18 at 20:47
Tried it, and (after installing the VS patch) it works as expected (see updated answer). – Martin Feb 18 at 21:33
It seems like that might have done it. I guess I incorrectly assumed that VS2008 SP1 was all I needed. Thanks! – Chris Farmer Feb 19 at 4:31
vote up 0 vote down

I'm getting similar results, but even more disappointing is that, when I'm referencing the script file in a master page, I don't get any jQuery intellisense at all in child pages. Admittedly this may be something I'm doing wrong, but for the time being I've had to include an <% if(false) { %> statement followed by a reference to the script file in any page/user control that I need intellisense on.

Eager to find out what I might be doing wrong.

link|flag
Have you tried this? stackoverflow.com/questions/555269/… – Mark Feb 18 at 20:54
...or this <% if (false) { %> <script src="~/js/jquery-1.3.1-vsdoc.js" type="text/javascript"></script> <% } %> – Mark Feb 18 at 21:04
This is a limitation of VS, and applies to more than just jQuery. The <% if (false) %> method is the best way around it. – Adam Lassek Feb 18 at 21:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.