Created
September 8, 2015 09:41
-
-
Save sathvikc/3ead50fa75df21902636 to your computer and use it in GitHub Desktop.
Check whether jQuery is installed or not
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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