Aperture
Aperture

Reputation: 2427

What kind of IntelliSense support does Visual Studio 2010 have for jQuery?

When I type '$('body').', a few generic choices pop up, including toLocalString() method, but not fadeIn() method or most of the specific methods you expect to pop up. So what's happening here?

Upvotes: 1

Views: 245

Answers (1)

Andrew Barber
Andrew Barber

Reputation: 40150

As you have noticed, Visual Studio has no support whatsoever for jQuery Intellisense, per-se. If it did, you would have seen jQuery-related Intellisense show up.

However, you can download a vsdoc file to get this support. See this blog post by Scott Guthrie for more.

As the extremely short article states, Visual Studio 2010 has built-in support for vsdoc files. It then informs you that you can download the vsdoc file to get jQuery Intellisense support from the jQuery website.

Upvotes: 2

Related Questions