Issue
I am trying to use Bootstrap to make an interface for a program. I added jQuery 1.11.0 to the <head>
tag and thought that was that, but when I launch the web page in a browser jQuery reports an error:
Uncaught Error: Bootstrap's JavaScript requires jQuery
I have tried using jQuery 1.9.0, I have tried with copies hosted on several CDNs, but I can’t get it work. Can anybody point out what I’m doing wrong?
Solution
Try this
Change the order of JS files. It should be like below.
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/wow.min.js"></script>
Answered By – Sridhar R
Answer Checked By – Clifford M. (BugsFixing Volunteer)