Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 JavaScript Intellisense Not Working

I have Visual Studio 2012 installed on my laptop and desktop. On my desktop PC, the JavaScript intellisense is not working. For any method it pulls up (even standard JavaScript calls) I receive the message, "Intellisense was unable to determine an accurate completion list for this expression".

I've tried all of the suggestions from the other posts and tried everything I could find on Google. Nothing has worked. It isn't about not having JQuery Intellisense. I don't get even basic JavaScript Intellisense.

Edit:

I'd post an image but as a new user it won't let me.enter image description here

The objects in the above images are simple strings, yet I don't get any help from the Intellisense.

like image 465
EL MOJO Avatar asked Nov 02 '12 23:11

EL MOJO


People also ask

Why is IntelliSense not working in Visual Studio?

If IntelliSense in Visual Studio 2019 stopped working, the issue could be related to NuGet. In this case, to resolve the issue, just delete the contents of the packages folder. Close all instances of Visual Studio 2019. Delete the contents of the packages folder at the root of your local machine.

Why IntelliSense is not working?

If you find IntelliSense has stopped working, the language service may not be running. Try restarting VS Code and this should solve the issue. If you are still missing IntelliSense features after installing a language extension, open an issue in the repository of the language extension.


3 Answers

I had the same problem: in Visual Studio 2010 I was used to add a reference in my javascript files, at the top, like this:

/// <reference path="/scripts/jquery-1.7.1-vsdoc.js" />

With the new Visual Studio 2012 this was not working anymore, I looked around and found the solution to put the reference in /scripts/_references.js I did so, not working.

What I was doing wrong was that I was referencing the vsdoc.js file, or at the moment of writing, nuget downloaded jquery 1.9.1 package, reference to jquery-1.9.1.intellisense.js which is WRONG.

The correct reference (if using the /scripts/_references.js file) is:

/// <reference path="/scripts/jquery-1.9.1.js" />

(NOT the .intellisense.js or the -vsdoc.js file).

For the global solution to work on all your projects: copy all the jquery files (main, minified, map, and intellisense one, to be sure) in C:\Program Files (x86)\Microsoft Visual Studio 11.0\JavaScript\References (adapt the path if you installed Visual Studio 2012 somewhere else) and in Visual Studio, under Tools > Options > Text Editor > Javascript > Intellisense > References > Add a reference to jquery-1.9.1.js (again, NOT the vsdoc or intellisense file, but the main one) as explained in the solution by denas (but it was not clearly said not to point the vsdoc/intellisense file).

Hope this helps.

like image 95
firepol Avatar answered Sep 25 '22 05:09

firepol


Many things can cause problems like this, but I usually follow these steps to troubleshoot it.

  1. close visual studio and restart
  2. reboot windows and start visual studio again
  3. have another developer load your project and test it
  4. create a bare bone project and test with all stock javascript references
  5. reset IDE
  6. run VS in safe mode and test your project
  7. uninstall and reinstall vs

I usually resolve most of the VS problems at step 3 or 4, and sometimes 5.

like image 39
Ray Cheng Avatar answered Sep 26 '22 05:09

Ray Cheng


If you've installed VS on anything other than the C Drive this will happen.

In Visual Studio, under Tools > Options > Text Editor > Javascript > Intellisense > References

Add references to the same .js files that exist in the list but pointing to the new path where you have VS installed

eg - G:\Program Files\Microsoft Visual Studio 11.0\JavaScript\References.libhelp.js

There are 5 of them

After this go to Edit> Intellisense > Refresh external references

like image 35
Warren Avatar answered Sep 26 '22 05:09

Warren