Just wondering if there’s any tutorials or ways to update jQuery scripts and functions.
I have version 1.4 and version 1.6.2 running, and I want to update both of them to 1.7.1 but I need to modify my script. I have no clue where to begin and what to change. Where can I start?
The place to begin would be to read the release notes of each jQuery update.
Here’s the link for 1.7 API changes. That page also includes a link to the change log.
Do this for each version you need, starting with the earliest. This will let you know not only of potential breaking changes, but also of new features that are available to you.
For the different versions, see the menu on the left from the first link I provided…
EDIT:
Since from the link provided in a comment, there seems to be an issue with a plugin, you’ll want to check the sites of all your plugins to make sure that you’re using the latest version.
Direct cause of the issue
It seems that the direct issue you’re having is that you’re loading jQuery more than once, and demolishing the
basic-jquery-slider.jsplugin with the second load.You should load only one version, and load it before any plugins are loaded.