Skip to content

Instantly share code, notes, and snippets.

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