Webstorm not showing ids and classes in jquery

Webstorm does not show id and classes in jquery id section when i try to write jquery. Please help, I'm new to programming and need a good intellisense to work. It does not show identifiers and classes, as in the image. I have the latest version.

http://blog.jetbrains.com/webide/2012/08/tips-on-jquery-development-in-webstorm/

Here is my code

It does not show identifiers after the # symbol, as it should be.

<!DOCTYPE html> <html> <head> <script> $("#") </script> </head> <body> <p id="test1">This is a paragraph.</p> <button id="btn1">Set Text</button> </body> </html> 
+4
source share
1 answer

Make sure the jQuery library is included here:

library

Also note that you need to press Ctrl + Space , this type of filling is explicit:

working on ctrl + space

+7
source

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


All Articles