Reputation: 313
I want to add jQuery to WebStorm (IDE by JetBrains), but it doesn't have any option to add it automatically. I also tried downloading jQuery from the website and installing it through the "Install Plugin from Disk" section, but it doesn't show up.
Help would be appreciated.
Upvotes: 12
Views: 15222
Reputation: 35750
jQuery is just a library, so you don't need a full plug-in for it; all you need to do is ...
After that jQuery variables (most notably $
) should no longer have squiggly lines under them, and you should be able to auto-complete jQuery functions. And that same basic pattern should work for pretty much any other Javascript library that you want Webstorm to support (the list of downloadable libraries is fairly comprehensive).
Upvotes: 44