Where can I get the VSDoc for jQuery 1.4.2?
this page contain a list of vsdoc files on microsoft's CDN
http://www.asp.net/ajaxlibrary/cdn.ashx
just search for vsdoc and u will find it :)
right now its not on official jquery download page
As well as renaming the VSDoc file (1.4.1) you may also have to change the jQuery version number used in the 1.4.1-vsdoc.js file to 1.4.2.
See line# 224,
// The current version of jQuery being used
jquery: "1.4.2",
For what it's worth, and from this question:
jQuery 1.4.3 vsdoc
Someone has updated the jQuery vsdoc for JQuery 1.4.3. It's at:
http://appendto.com/community/vsdoc
You always get it from http://docs.jquery.com/Downloading_jQuery - if it's not there yet, it's not available yet. v1.4.1 exists - see screenshot - but 1.4.2 isn't ready yet.
For the time being you could always just rename "jquery-1.4.1-vsdoc.js" to "jquery-1.4.2-vsdoc.js" and when they release the new vsdoc version just replace it.
Note: I had to then modify the script source path and then change it back again to force vs to pick up the vsdoc. I just added a forward slash at the start of the src attribute value and then removed it.
You can get it from here:
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2-vsdoc.js
This is a web site hosted by Microsoft.
Note that if you need a newer version, say for jQuery 2.1.0, just change the version in above's path, i.e.:
http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.0-vsdoc.js
and the download instantly starts.