Created
August 9, 2019 16:25
-
-
Save bradgreens/f4b3869b9c4da98d8f154083d8cb3b86 to your computer and use it in GitHub Desktop.
Load jQuery in the browser JS Console
This file contains 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
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