3

Problem statement:
I cannot find info at getbootstrap about what version of jQuery use Bootstrap 3?

Do you know?

Thanks!

Siguza
  • 21,155
  • 6
  • 52
  • 89
HelloWorld1
  • 13,688
  • 28
  • 82
  • 145
  • [this](http://stackoverflow.com/questions/18891829/twitter-bootstrap-3-jquery-minimum-version)? – Leo Silence Jun 11 '15 at 09:52
  • 1
    There is [this question](http://stackoverflow.com/questions/18891829/twitter-bootstrap-3-jquery-minimum-version). which has [this link](http://getbootstrap.com/getting-started/#whats-included) in which there is `>= 1.9.1` in file. Googled in 30 seconds. – Regent Jun 11 '15 at 09:52
  • That is about 'twitter bootstrap 3' – HelloWorld1 Jun 11 '15 at 09:55

1 Answers1

3

It is given in their bower.json: jquery": ">= 1.9.1"

{
  "name": "bootstrap",
  "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  "version": "3.3.4",
  "keywords": [
    "css",
    "js",
    "less",
    "mobile-first",
    "responsive",
    "front-end",
    "framework",
    "web"
  ],
  "homepage": "http://getbootstrap.com",
  "main": [
    "less/bootstrap.less",
    "dist/css/bootstrap.css",
    "dist/js/bootstrap.js",
    "dist/fonts/glyphicons-halflings-regular.eot",
    "dist/fonts/glyphicons-halflings-regular.svg",
    "dist/fonts/glyphicons-halflings-regular.ttf",
    "dist/fonts/glyphicons-halflings-regular.woff",
    "dist/fonts/glyphicons-halflings-regular.woff2"
  ],
  "ignore": [
    "/.*",
    "_config.yml",
    "CNAME",
    "composer.json",
    "CONTRIBUTING.md",
    "docs",
    "js/tests",
    "test-infra"
  ],
  "dependencies": {
   "jquery": ">= 1.9.1" //SEE This
  }
}
Nikhil Batra
  • 3,118
  • 14
  • 19