Created
November 23, 2022 19:23
-
-
Save midwire/7392678f4f8fe85d1978a264b7118bcc to your computer and use it in GitHub Desktop.
[Determine jQuery version in the browser]
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
// Paste this into the console | |
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