Skip to content

Instantly share code, notes, and snippets.

@bradgreens
Created August 9, 2019 16:25
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save bradgreens/f4b3869b9c4da98d8f154083d8cb3b86 to your computer and use it in GitHub Desktop.
Load jQuery in the browser JS Console
var script = document.createElement('script');script.src = "https://code.jquery.com/jquery-3.4.1.min.js";document.getElementsByTagName('head')[0].appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment