Reputation: 23515
I'm using the jquery 1.2.6 with the seperate jquery tabs framework. I also need to use the 1.3.2 jquery sortable & resizable. I need to make those two to work.
how do i manage these two frameworks?
Upvotes: 3
Views: 99
Reputation: 14031
Have you even tried to see if the tabs stuff works with jQuery 1.3? Or just go ahead and try it with 1.4, there's been a lot of improvements.
jQuery releases are almost completely backwards compatible (for most practical purposes), and I've never had any issues updating.
I'm using a bunch of old plugins designed for 1.2.x running on 1.4.2 no problem.
Upvotes: 0
Reputation: 908
I don't know about "jQuery tabs framework", but jQuery-UI has a nice "tabs" plugin that works with the latest jQuery. Anyway, if you have to use both versions, maybe something like this might work (probably not, but might be worth a shot) => noConflict()
Upvotes: 0
Reputation: 630429
You are much much better off bringing everything on the same platform (and unless there's a reason, why not jQuery 1.4.2 and jQuery UI 1.8.1?).
Most likely upgrading any plugins that are currently keeping you on 1.2.6 isn't that difficult, if there's any work to do at all...trust me, it's a lot less work than debugging issues from 2 versions of jQuery trying to battle it out...it's just not designed to do this.
Upvotes: 3