Does Twitter Bootstrap include jQuery?

JqueryTwitter Bootstrap

Jquery Problem Overview


Does Twitter Bootstrap v3 include jQuery or do I need to include jQuery separately? If it does include jQuery, what version (number) of jQuery is included, and are all jQuery functions available when using Bootstrap?

Jquery Solutions


Solution 1 - Jquery

>Heads up! All javascript plugins require the latest version of jQuery.

Right here in the docs

Here is the current release link for jQuery

There are a number of elements to the Bootstrap "product" - one of them are JavaScript Plugins - only these require jQuery - and they extend the jQuery functionality so yes all jQuery methods / functions are available. The remainder (CSS, Scaffolding, Components etc) require HTML and CSS (or a combination)

jQuery is not included within the Twitter Bootstrap download - you must download it / link to a CDN version of it

EDIT:

2.X requires atleast 1.7

Solution 2 - Jquery

> Does Twitter Bootstrap use jQuery?

Yes, jQuery plugins require jQuery. And as Mike pointed out, it is clearly mentioned on the site.

> If so, what version (number) of jQuery is used

Also as Mike mentioned, latest version

> are all jQuery functions available?

jQuery functions are available through jQuery, they have nothing to do with Bootstrap. If you include the jQuery library, you can use any jQuery functionality you want.

Solution 3 - Jquery

The Bootstrap jQuery plugins are just like any other jQuery plugins in that they require jQuery to work. You download jQuery and include it in your page, and then include the Boostrap plugins.

It doesn't use a specific version of jQuery, just get the latest version from the jQuery site.

All jQuery functions are available in jQuery (how else?), Bootstrap has nothing to do with it... it just gives you some extra plugins.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMatt KView Question on Stackoverflow
Solution 1 - JqueryManseView Answer on Stackoverflow
Solution 2 - JqueryTerryView Answer on Stackoverflow
Solution 3 - JquerysachleenView Answer on Stackoverflow