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
Those are protocol-relative links. When the browser encounters them, it requests the resource from the location using whichever protocol the webpage has been served over. They're useful for preventing protocol mismatch errors and security issues when mixing HTTP and HTTPS. I'm guessing that you cloned this repo locally, and opened an example by double-clicking, and your browser wasn't able to resolve the jQuery asset on your filesystem.
I needed to update:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>to:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>The text was updated successfully, but these errors were encountered: