vote up 0 vote down star
1

Hi,

I'm trying to follow this tutorial - http://www.dotnetcurry.com/ShowArticle.aspx?ID=231&AspxAutoDetectCookieSupport=1

I have both the vsdoc file and the main jQuery script files in the same folder, and when I include the jquery file, I get no intellisense when I start typing $(, but I do get intellisense when I include the jquery vsdoc file instead.

Any ideas? I'm expecting vs to automatically load the intellisense from the vsdoc.

Thanks for any help!

flag

4 Answers

vote up 1 vote down check

Check you have the hotfix for visual studio installed.

You can get it here, along with instructions on how to do it:

http://blogs.msdn.com/webdevtools/archive/2008/11/07/hotfix-to-enable-vsdoc-js-intellisense-doc-files-is-now-available.aspx

link|flag
This did the trick - I thought I already had the hotfix installed. Thanks! – stringo0 Aug 7 at 16:46
vote up 0 vote down

You'll need to include the jquery file and reference the vsdoc file.

link|flag
no you don't. you just need to reference it – Jason Aug 7 at 15:54
Hi, what do you mean by reference the vsdoc file? Could you explain a tad more? Thanks! – stringo0 Aug 7 at 16:41
vote up 0 vote down

all you need to do is make sure you reference the vsdoc file at the top of your custom scripts page:

/// <reference path="jquery-1.3.2-vsdoc.js" />

since the vsdoc is only needed for development, i keep it somewhere on my machine locally and just reference it in every new project i make. there's no need to include it in your project. just make sure your reference path is accurate.

link|flag
I'm not trying to write a custom script though, trying to test it out in a aspx page, following the tutorial – stringo0 Aug 7 at 16:40
then include this line right under your <script> tag. but you really should abstract your script so that it is reusable... – Jason Aug 7 at 16:45
ps, that tutorial sucks. try this one: mwtech.blogspot.com/2009/05/… it got me up and running – Jason Aug 7 at 16:47
vote up 0 vote down

Check out my post on this topic from a few weeks ago which includes the required pre-reqs (install SP1 and a hotfix) and full source code and screenshots from jquery 1.3 download to working intellisense: Integrating jQuery 1.3, ASP.NET 3.5 Visual Studio 2008

link|flag
Does this work for Visual Web Developer as well? Checking it out. – stringo0 Aug 7 at 16:43
I am fairly certain when I did that tutorial I was running on a computer with Express. Let me know if it doesn't work for you and I've got a copy of Express I can load the example up on. – Mike Knowles Aug 7 at 21:19

Your Answer

Get an OpenID
or

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