Created
January 7, 2014 08:07
-
-
Save gwa/8296080 to your computer and use it in GitHub Desktop.
Check if a jQuery plugin (e.g. colorbox) is loaded.
This file contains 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
function _initColorbox() | |
{ | |
// return if colorbox not loaded | |
if (!jQuery().colorbox) { | |
return; | |
} | |
$(".selector").colorbox({}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment