I am very new to jQuery, I am customizing my PHP project and trying to include 4 jQuery scripts in my page. Until I include my fourth jQuery script every thing was working fine, but when I included the fourth one I lost all other jQuery effects. now If I remove the second. again all other three scripts work fine. Even I tried with $.noConflict() with every script I included in my page. I am using the following versions of jQuery in my Page.
jquery-1.6.2.js
jquery-1.8.16.js
jquery-1.4.2.min.js
jquery.carousel.2.1.js
Do I need to put my jQuery in a specific order,. or do I need to do anything else?
jquery-1.8.16.jslooks like it is actually jQuery UI.jquery.carousel.2.1.jsis a seperate plugin.These are just plugins and should have no effect, but should be included after the main jQuery library.
jquery-1.6.2.jsandjquery-1.4.2.min.jsare versions of the jQuery library.Do you actually need to include both of these? I would advise you remove 1.4.2 and fix any bugs that appear.