Host jquery plugins script
Hi all,
Sorry if i asked very basic question, i have been building website with jquery, and it's nice tools to have, because it have so many usefull plugins.... I am using rails 2.3.5
I have finish my website and host it at www.site5.com. And i can not get my jquery run smoothly.
I probaly know the main problem which is, i have to load the jquery script from other location, rather than my remote site path....
Ex :
=> i have this code at my main layout... <%= javascript_include_tag 'jquery.js' %>, and it seem that jquery not get loaded this way (usually in my local develoment box. it's just work fine)
When i replaced it with
=> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>, then everything work fine....
The problem is i'm using several plugins... and i don't all the path to load the plugins script. I used these plugins :
1. jclock.js
2. jcalculation.js
3. numberformatter.js
4. menu.js
5. dataTables.js
Do i have to find all the path? or i can upload the *.js file that i needed to some path in my remote site (my domain)?
thanks.