I have created my dynamic web project in Eclipse. Since my UI use javascript jQuery, I have download the jQuery API, I am wondering where to put it in my eclipse project?.
Under which directory? is there any configurations for the jQuery API inside eclipse?
I have created my dynamic web project in Eclipse. Since my UI use javascript
Share
I’m not quite sure if you just want to know how to provide jQuery for your WebApplication or if you want to be able to develop JavaScript applications with jQuery and have autocompletion for doing so.
To use jQuery in your WebApp you can put it somewhere in the WebContent folder. I usually create a “scripts”-folder where I have all the js files.
You can then link from your servlet / html file… or whatever to the js file. E.g. you have an index.html in the WebContent directory then you would use the path scripts/jquery.js to link to the js file in the scripts folder.
I hope this was some help to you.
br, Chris