I've read through some of the other questions here on SO and haven't quite come across my problem. I've read all the documentation I can find, and it seems that merely having a -vsdoc file in the same directory and named in the same manner as my jQuery file is enough to get IntelliSense firing for jQuery.
This works for external .js files just fine - I use the /// <reference />
tag to get it working.
My problem is with .asp files that I am including jQuery on. This doesn't work:
<script type="text/javascript" src="path-to/jquery-latest.min.js">
This below does work, but is a poor solution, and not at all how I've read it should work.
<script type="text/javascript" src="path-to/jquery-latest-vsdoc.min.js">
Anyone have any tips on what I could be doing wrong?