Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Created June 1, 2018 00:39
Show Gist options
  • Save csharpforevermore/c1aace47e6d5bbdf4b69a9ded8b2ac5b to your computer and use it in GitHub Desktop.
Save csharpforevermore/c1aace47e6d5bbdf4b69a9ded8b2ac5b to your computer and use it in GitHub Desktop.
Verify that jQuery is loaded and display the version number
if (typeof jQuery != 'undefined') {
// jQuery is loaded => print the version
alert(jQuery.fn.jquery);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment