Skip to content

Instantly share code, notes, and snippets.

@jlbruno
Created October 25, 2011 13:27
Show Gist options
  • Save jlbruno/1312723 to your computer and use it in GitHub Desktop.
Save jlbruno/1312723 to your computer and use it in GitHub Desktop.
Run a function after jQuery is loaded
var tempTimeout;
(function checkForJquery() {
if (!window.jQuery) {
tempTimeout = setTimeout(checkForJquery, 500);
} else {
myFunction();
clearTimeout(tempTimeout);
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment