Virtual Studio 2008 - ASP.NET - jQuery 1.7.1 VSDoc - JavaScript Intellisense?

Does anyone have a place to download jQuery 1.7.1 VSDoc?

And also what to do to make it work? I currently have the following, and I am getting a massive error in VSDoc when I execute Ctr-Shift-J to update Intellisense:

 <script type="text/javascript" src="includes/jquery.js"></script> <% If (False) Then%> <script type="text/javascript" src="includes/jquery.vsdoc.js"></script> <% End If%> 

I have Service Pack 1 and a hotfix update so that VSDoc works in VS 2008.

+6
source share
2 answers

It seems that the latest version of jQuery VSDoc 1.7 is not 1.7.1. Version 1.7 can be downloaded here: http://appendto.com/community/jquery-vsdoc

+12
source

vs doc is 1.7. but there are no big changes from 1.7. up to 1.7.1.

Rename 1.7 first. vsdoc to jquery-1.7.1-vsdoc.js

Second, add the vsdoc file to the jquery library folder.

Third, add a line to the javascript or script file, for example: /// <reference path="/javascript/library/jquery-1.7.1.min.js" />

+2
source

Source: https://habr.com/ru/post/903137/


All Articles