Skip to content

Instantly share code, notes, and snippets.

@csilverman
Created March 15, 2019 13:50
Show Gist options
  • Save csilverman/91a5f1043e8e159b0e64f7daf67738e7 to your computer and use it in GitHub Desktop.
Save csilverman/91a5f1043e8e159b0e64f7daf67738e7 to your computer and use it in GitHub Desktop.
// https://stackoverflow.com/questions/7341865/checking-if-jquery-is-loaded-using-javascript
$(document).ready(function(){
if (jQuery) {
// jQuery is loaded
alert("Yeah!");
} else {
// jQuery is not loaded
alert("Doesn't Work");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment