When I use Google CDN to purchase the jQuery library, how can I then link to the Microsoft CDN VSDOC file to get IntelliSense support in VS 2010?
So far in the documentation, I have followed the instructions to put the VSDOC file along with the script file in the same folder (on the website) and comply with the naming convention.
eg
/scripts/jquery-1.6.2-vsdoc.js /scripts/jquery-1.6.2.js
However, my files are not on disk. Can I get IntelliSense over the network without downloading these files?
jQuery VS Doc location on Microsoft CDN:
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.2-vsdoc.js
JQuery from Google CDN (with Google API Key not shown):
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"> </script>
source share