Skip to content

Instantly share code, notes, and snippets.

@leemour
Last active February 18, 2018 14:59
Show Gist options
  • Save leemour/db1f5b56916f8078827992dfa90dd120 to your computer and use it in GitHub Desktop.
Save leemour/db1f5b56916f8078827992dfa90dd120 to your computer and use it in GitHub Desktop.
Load jQuery in JavaScript console on any web page
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