i\'m developing an Angularjs application and i\'d like to make it multiplatform so to do that i\'m trying to use Bootsrap, i found a template i\'d like to follow (https://bl
jQuery
and Bootstrap.js
should be included with jQuery
placed before Bootstrap.js
.jQuery
that can be used will vary depending on the version of Bootstrap
being used (or vice versa).JS Many of our components require the use of JavaScript to function. Specifically, they require jQuery, Popper.js, and our own JavaScript plugins. Place the following
<script>
s near the end of your pages, right before the closing</body
> tag, to enable them. jQuery must come first, then Popper.js, and then our JavaScript plugins.We use jQuery’s slim build, but the full version is also supported.
"peerDependencies": {
"jquery": "1.9.1 - 3",
"popper.js": "^1.12.7"
},
jQuery required
Please note that all JavaScript plugins require jQuery to be included, as shown in the starter template. Consult our bower.json to see which versions of jQuery are supported.
"dependencies": {
"jquery": "1.9.1 - 3"
}
"dependencies": {
"jquery": ">= 1.9.1 - 2"
}
"dependencies": {
"jquery": ">= 1.9.1"
}
This does not account for the release of jQuery v3.0
"dependencies": {
"jquery": ">= 1.9.0"
}
This does not account for the release of jQuery v3.0