Uncaught: Bootstrap's Javascript Requires Jquery
I have included jquery and bootstrap.min.js file in my footer section or it means i have my all script tag at the bottom of the code. But when i am loading my page the browser cons
Solution 1:
It's uncommon to use localhost
or 127.0.0.1
for a file path. Use relative path
instead.
Regarding script position: you can leave them in the footer, that will speed up page loading, but make sure any JavaScript code you execute is AFTER jquery/bootstrap in the dom.
And don't forget to wrap your code inside a document ready
jquery function
Post a Comment for "Uncaught: Bootstrap's Javascript Requires Jquery"