BlastingOffWithBootstrapDemo
BlastingOffWithBootstrapDemo copied to clipboard
Navbar drop down is broken with jQuery 3.1.0
When the dropdown menu is clicked I'm getting a "Your file was not found" error in Chrome.
Ether using a CDN script tag like:
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
or my own local copy of jQuery:
<script src="js/jquery-3.1.0.js"></script>
When I use the one in your index.html it works fine:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
Also this one works just fine:
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
pulled this script tag off the Bootstrap basic template and it works to:
<script src="https://code.jquery.com/jquery.js"></script>