Missing javascript intellisense in Visual Studio 2010

I was glad to see javascript intellisense in Visual Studio 2010, but I do not see everything inside it in a specific object, in the code below

if (document.images[i].parentNode.tagName == "A" 

"parentNode" is not displayed in intellisense, which made me think that I am typing the wrong code, but it exists, and Visual studio does not show it.

How to fix it?

Update:

  • Used NetBeans 7.1 did not help me in JavaScript,
  • Installed JScript extensions for VStudio 2010, some improvements in js editing, but not improvements in Javascript intellisense,
+6
source share
4 answers

Out of the box, you have JavaScript support in Visual Studio 2010, but it doesn’t actually cut it.

I am currently using Resharper 6.1 (a Visual Studio plugin) that cuts it. He does exactly what you expect, plus a lot more. This is not free, but I can recommend it to anyone.

+3
source

If you want to improve the use of JavaScript by default in Visual Studio 2010, you need to install the JScript extensions.

In VS> Tools > Extension Manager > Search for JScript

Then you can install the following extensions:

  • JScript Brace Matching Extension
  • JScript Editor Extension
  • Parallel JScript IntelliSense Extension
  • JScript Outloning Extension
  • JScript WOrk Shortcut Extension

Good luck

+11
source

I am developing Unity3D, and my main IDE is MonoDevelop. MonoDevelop with Unity3D seems to have strong JavaScript support. Since I mainly do C #, I can't talk much about it, but you can play with it.

+2
source

I found the editor Free JavaScript Editor "it has good intellisense support for javascript, it can solve

  • HTML
  • CSS
  • Javascript

That's all I need right now ...! :)

Thanks for all the answers and input ...

0
source

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


All Articles