BlastingOffWithBootstrapDemo icon indicating copy to clipboard operation
BlastingOffWithBootstrapDemo copied to clipboard

Navbar drop down is broken with jQuery 3.1.0

Open wildpow opened this issue 9 years ago • 0 comments

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>

wildpow avatar Sep 09 '16 23:09 wildpow