When I'm using the Google CDN to acquire the jQuery library, how do I then reference the companion Microsoft CDN VSDOC file to get IntelliSense support in VS 2010?
So far in documentation I've run across instructions to put the VSDOC file alongside the script file in the same folder (in the website) and abide by the naming convention.
e.g.
/scripts/jquery-1.6.2-vsdoc.js
/scripts/jquery-1.6.2.js
However my files aren't on disk. Can I gain IntelliSense over the network without downloading these files?
jQuery VS Doc location at 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>