Skip to content

Instantly share code, notes, and snippets.

@sathvikc
Created September 8, 2015 09:41
Show Gist options
  • Save sathvikc/3ead50fa75df21902636 to your computer and use it in GitHub Desktop.
Save sathvikc/3ead50fa75df21902636 to your computer and use it in GitHub Desktop.
Check whether jQuery is installed or not
if(typeof jquery!="undefined") {
//jQuery is installed
// Write your code
} else {
//jQuery not installed
// Write your code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment