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>
source share