I'm using JQuery tools' tabs feature and at the same time I use JQuery UI.

If I include both JS libraries, Jquery tools with tabs does not work.

How to fix this conflict? Any help is appreciated.

Thanks in advance.

link|improve this question

25% accept rate
feedback

3 Answers

You could get a custom jQuery-ui build that that doesn't include the tabs but that might cause some confusion later on. A better approach, IMHO, would be to edit the jQuery-tools tabs.js and change this line:

$.fn.tabs = function(query, conf) {

to something like this:

$.fn.fpTabs = function(query, conf) {

I used "fpTabs" for "flowplayer.org tabs", you can use whatever name works for you. That should clear up your conflicts without causing problems anywhere else. Of course, you'd have to remember that you changed tabs.js if you ever upgrade but that should be less troublesome than messing around with a tab-less jquery-ui.js file.

link|improve this answer
jQuery-UI has tabs and has taken $.tabs for its own use, the jQuery-tools tabs from flowplayer.org also wants to use $.tabs in its tabs.js so edit the tabs.js from flowplayer.org as above and the conflict should go away. Of course, you'll have to host your own copy of tabs.js for this to work. – mu is too short Jan 5 '11 at 4:27
I figured it out by naming the flowplayer tabs. Thanks. – Emir Jan 5 '11 at 4:45
2  
mmmmmmmmm. pie. – Matt Ball Jan 14 '11 at 17:39
feedback

There is an easier method. Whenever you use jquery with other libraries (Tools | Prototype | MooTools | etc.) you can use a special noConflict function to re-assign the $ to another variable. For example:

var $j = jQuery.noConflict();    // assign the main jQuery object to $j
$j("#tabs-container").tabs();    // use $j as you would normally use $

Or you can be more explicit and use jQuery.someFunction() instead of $.someFunction.

link|improve this answer
feedback

You can build your own jquery UI in this url http://jqueryui.com/download

only pick tools you need and do not include component TAB in the options to avoid conflict with jquery tools

enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.