How to fix this jQuery intellisense problem in Visual Studio 2008?

How can I solve this problem? Error updating JScript IntelliSense: D: \ myProject \ js \ jquery-1.3.2.js: the object does not support this property or method @ 2139: 1 ", I did everything in it Visual Studio jscript intellisense error with jQuery 1.2.6?

But don't hope I have to edit something in my Visual Studio variants, or does Visual Studio have a problem?

+3
source share
2 answers

Make sure you have the corresponding vsdoc file located next to jquery-1.3.2.js (in / js / in your case here) and that it is correctly named jquery-1.3.2-vsdoc.js .

In addition, although I do not think this is strictly necessary in your case, it usually does not hurt to install this hotfix: http://blogs.msdn.com/webdevtools/archive/2008/11/07/hotfix-to-enable- vsdoc-js-intellisense-doc-files-is-now-available.aspx

Finally, this is a useful Visual Studio JavaScript Intellisense FAQ by Jeff King (Snap-in Program Manager): http://blogs.msdn.com/webdevtools/archive/2008/11/18/jscript-intellisense-faq.aspx

+4
source

For write only:

, vsdoc , ctrl shift 'J', VS JQuery. , VSdoc 2 . , vsdoc2.js vsdoc.js: ctrl shift 'j' boom: !

NB. :

<script type="text/javascript" src="jsCode\jquery-1.3.2.js"></script>

vsdoc.js jquery-1.3.2.js, , , :

<script type="text/javascript" src="jsCode\jquery-1.3.2-vsdoc.js"></script>

.. . , , , .

+1

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