In our project we use jQuery 1.4.4 and jQuery UI 1.8.7 now. But we want upgrade those files to versions 1.7.1 and 1.8.18 respectively. Please, give me correct algorithm for the transition.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Get the latest files from the jQuery site and jQuery UI site, and update your
<script>and<link rel="stylesheet">tags according to the updated file names.Although you probably do not need to do many major changes to your own code, it is nice to get an overview of new features and improvements between versions. I suggest you read up on the blog announcements that is posted on each release, as they sum up the most important changes.
You should be especially aware of the changes made to how attr/prop behaves release 1.6.1. Some occurences of
attrprobably have to be changed toprop. Also, you should consider to change any uses of thelive, which is now deprecated (but still working), to the newonmethod introduced in version 1.7.It will also be a good idea to get the latest versions of other jQuery plugins.