Search code examples
jqueryjquery-pluginsjquery-1.5jquery-1.3

Will my site break if i migrate/upgrade jQuery 1.3 to 1.5?


Currently i am using jQuery 1.3.2. i would like to migrate/upgrade the same to jQuery 1.5?

I am using some of the plugging as well. How can i make sure that it wouldn't break. I don't where it would break if upgrade to jQuery 1.5. Please let me know your comments on this.


Solution

  • Possibly it shall break because lots of changes are been done between these upgrades.

    Solution:

    1. Upgrade all the plugins
    2. upgrade the jQuery library to 1.6 (which is latest and all the plugins must be compatible with it).
    3. Check every function that you have used jQuery 1.4, jQuery 1.5, jQuery 1.6.

    Then eventually verify the site at TEST server.

    This is the only full proof way to know it.