Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

twitter bootstrap 3 jquery minimum version

What is the Minimum version of jquery and jquery-ui to use with Twitter bootstrap 3? I have not found any documentation about that.

like image 844
werva Avatar asked Sep 19 '13 10:09

werva


People also ask

What version of jQuery does Bootstrap 3 need?

There is no need of jQuery UI for twitter bootstrap 3. The latest stable version of jquery is better. The latest version may not work with the other libraries.

Does bootstrap 3 Use jQuery?

Bootstrap uses jQuery for JavaScript plugins (like modals, tooltips, etc). However, if you just use the CSS part of Bootstrap, you don't need jQuery.

Does bootstrap still use jQuery?

Bootstrap 5 is designed to be used without jQuery, but it's still possible to use our components with jQuery. If Bootstrap detects jQuery in the window object it'll add all of our components in jQuery's plugin system; this means you'll be able to do $('[data-bs-toggle="tooltip"]').


2 Answers

I've just found this page on Bootstrap 3 "Getting Started" section.

For Bootstrap 3 there are dependencies on JQuery set to version 1.9.0 or higher

http://getbootstrap.com/getting-started/#whats-included

There you can find a link to their Bower file hosted on GitHub where is clearly written the minimum version of JQuery required by Bootstarp 3.0.2

like image 117
Max Avatar answered Sep 25 '22 14:09

Max


https://github.com/twbs/bootstrap/blob/v3.0.2/bower.json

"dependencies": {     "jquery": ">= 1.9.0"   } 
like image 30
amul Avatar answered Sep 26 '22 14:09

amul