When I create a Dynamic Web Project in Eclipse, it generates JavaScript Resources
meta-folder; before I tried to use it for the first time, I thought it worked like Java Resources - if you add your source, here the IDE provides you with Intellisense, documentation and error checking.
But when I tried to add jquery.js, I did not find anything that I expected to see. Yes, eclipse shows me that it knows the jQuery object now, but it does not know anything about jQuery methods (e.g. jQuery.ajax(...)), and also does not recognize the $shortcut.
How can I use eclipse recognition methods for js libraries that I include?
tsds source
share