You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 11, 2019. It is now read-only.
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>