Skip to content

Instantly share code, notes, and snippets.

@isabellatea
Last active February 8, 2019 06:46
Show Gist options
  • Save isabellatea/1a77f126ef03522fc74388c2659b9c62 to your computer and use it in GitHub Desktop.
Save isabellatea/1a77f126ef03522fc74388c2659b9c62 to your computer and use it in GitHub Desktop.
jQuery: script import and document ready event
//insert after CSS script import
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
$(document).ready(function(){
// all jQuery methods go here...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment