Reputation: 2427
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
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