kursus
kursus

Reputation: 1404

Update jQuery plugin to 1.6

I use a jQuery plugin (jParallax) which works well with jQuery 1.3.2 but not above. I need to update it to jQuery 1.6 but have no clue on how to do this.

Is there any document out there that sums up differences between jQuery versions? Or anything to help?

Upvotes: 2

Views: 241

Answers (3)

Pierre
Pierre

Reputation: 19071

There is a simple way to do this, is to check the jQuery Changelog. Found Here

Replace the 1.6 in the URL by the version number you want.

For instance, you want to know the differences between jQuery 1.3.2 and 1.6; Therefore you need to check those change-logs (pages):

1.4.0 January 14, 2010
1.4.1 January 25, 2010
1.4.2 February 19, 2010
1.4.3 October 16, 2010
1.4.4 November 11, 2010
1.5.0 January 31, 2011
1.5.1 February 24, 2011
1.5.2 March 31, 2011
1.6.0 May 3, 2011

Upvotes: 1

Sparky
Sparky

Reputation: 98728

Quote OP:

Is there any document out there that sums up differences between jQuery versions?

Click every "Release Notes" link next to versions 1.4 through 1.6...

http://docs.jquery.com/Downloading_jQuery#Download_jQuery


Alternatively, I think it would be easier to use the latest jQuery 1.7 and a different plugin (or write your own plugin from scratch).

http://www.franckmaurin.com/the-parallax-effects-with-jquery/

http://www.davecranwell.com/content/jquery-scroll-parallax-plugin

http://stephenmcintyre.net/blog/jquery-parallax-scrolling/

Upvotes: 2

Troy Barlow
Troy Barlow

Reputation: 313

You'll want to read the breaking changes part of the release notes:

jquery 1.6 Release Notes

Upvotes: 1

Related Questions