Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can JQuery UI and JQuery tools work together?

Tags:

Can JQuery UI and JQuery tools work together? I.e. If I include both libraries on one page, will it still work?

like image 585
coderama Avatar asked Sep 03 '09 17:09

coderama


People also ask

Is jQuery and jQuery UI same?

JQuery is basically the base of JQuery UI and is the more powerful between the two. It should be used for more advanced work that requires custom code and interactions. For basic user interface needs, using the JQuery UI is very beneficial as it reduces the complexity of coding and speeds up the entire process.

Does jQuery UI include jQuery?

jQuery UI is a widget and interaction library built on top of the jQuery JavaScript Library that you can use to build highly interactive web applications.

What is jQuery UI combined?

jQuery UI is an open source library of interface components — interactions, full-featured widgets, and animation effects — based on the stellar jQuery javascript library .

Is jQuery UI still supported?

Support for jQuery 1.7 has been dropped; jQuery 1.8 & newer remain supported. In this release, all individual module files as well as bundled jQuery UI copies produced by the Download Builder have all its code running in strict mode.


2 Answers

They can be used together. The problem is that there is a jquery.tabs created in both libraries. That conflict causes the second script to not load. You have to go to http://jquerytools.org/download/ to build a custom download and do not include tabs. I just had this problem and was able to resolve it by doing this.

The only downside is you can't use the CDN, since you're stuck downloading a custom JS file and including it in your site.

like image 131
Eric Hendrickson Avatar answered Sep 23 '22 13:09

Eric Hendrickson


Yes, of course, but I don't know why you would want to

like image 22
Josh Stodola Avatar answered Sep 22 '22 13:09

Josh Stodola