How can I use another version of jQuery on the same page on website without conflicts? This is the situation:
<!-- code with loaded jquery-2.2.0.min.js -->
<div id="gallery"></div>
I need to use jQuery 1.3.0 just for this gallery div, so the best if it'd work like this:
<!-- code with jquery-2.2.0.min.js -->
<div id="gallery">
<!-- load jquery-1.3.0.min.js just on this div -->
</div>
<!-- load jquery-2.2.min.js again to the rest of the site -->
I don't know JS nor jQuery, nor how it works, that's why I ask you guys. I can even put full jquery-1.3.0.min.js code on the page somehow, I just need this to work without conflict with jQuery 2.2.0. I also need jQuery 2.2.0 on this page as well. I need any working solution.