Last active
February 18, 2018 14:59
-
-
Save leemour/db1f5b56916f8078827992dfa90dd120 to your computer and use it in GitHub Desktop.
Load jQuery in JavaScript console on any web page
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
fetch('http://code.jquery.com/jquery-latest.min.js').then(response => response.text()).then(text => { eval(text); console.log($) }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment