Skip to content

Instantly share code, notes, and snippets.

@Macagare
Created November 22, 2012 08:01
Show Gist options
  • Save Macagare/4129901 to your computer and use it in GitHub Desktop.
Save Macagare/4129901 to your computer and use it in GitHub Desktop.
Javascript: Check if jquery exists
if (jQuery) {
// jQuery is loaded
} else {
// jQuery is not loaded
}
if (typeof jQuery == 'undefined') {
// jQuery is not loaded
} else {
// jQuery is loaded
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment