I downloaded the daterangepicker available here : filament group
I am using jQuery 1.4.x version in my page, and all other plugins I am using are supported only on latest version of jQuery. The daterangepicker tool fails because it is using date.js (which uses a very old jQuery).
If I use datepicker, all other plugins and functionality of rest of the plugins I am using are lost.
I went through filament group's comments and found this :
@ Mckensy: We made sure to use “jQuery” instead of $ to prevent such collisions but it appears the date.js library uses $, which is probably causing your conflict. Maybe you could try replacing their $ variables with something else.
he means that noConflict mode doesn't work and only way is to change date.js.
Now can someone please tell me how to do what he says ??