Using multiple versions of jQuery on the same page

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();

This entry was posted in General. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *