Skip to content

Instantly share code, notes, and snippets.

@xy0
Created August 16, 2018 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xy0/e885f3442aa2afd89b6aaf87e7bae8d8 to your computer and use it in GitHub Desktop.
Save xy0/e885f3442aa2afd89b6aaf87e7bae8d8 to your computer and use it in GitHub Desktop.
test for jQuery support
// test for jQuery
//
if ('undefined' == typeof window.jQuery) {
console.error('~jQuery is required')
} else {
(function($){
$(document).ready( function(){
// jQuery loaded
});
})(window.jQuery);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment