Can I use multiple versions of jQuery on the same page?
Yes!
Thankfully, jQuery’s noConflict function comes to the rescue.
Then, instead of using $(‘#selector’).function();,
you can use jQuery_1_7_1(‘#selector’).function();
or jQuery_1_4_4(‘#selector’).function();
About Bhupendra Kunwar