Skip to content Skip to sidebar Skip to footer

Javascript Intellisense Is Not Working In Visual Studio 2015

I know there are ALLOT of duplicates to this problem on SO as well as all over the web. Unfortunately, nothing that was suggested is working. I've done everything with the exceptio

Solution 1:

After many hours of banging my head against my desk, I found the answer to this weird issue. Turns out that the bootstrap.min.js script was interfering with the JavaScript intellisense. So I just commented out the script in my _references.js file. Also, I changed the autosync to false and instantly the intellisense came back.

Solution 2:

Try changing the order of plugin references in your _references.js file.

In my case it was the JQuery-UI which I needed to move above the main JQuery reference, as explained in this post: jQuery UI breaks Visual Studio 2015 Intellisense

Post a Comment for "Javascript Intellisense Is Not Working In Visual Studio 2015"