Skip to content

Instantly share code, notes, and snippets.

@jakelodwick
Last active January 20, 2016 17:49
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 jakelodwick/6095055 to your computer and use it in GitHub Desktop.
Save jakelodwick/6095055 to your computer and use it in GitHub Desktop.
Inject jQuery into any webpage through the console
// paste this into your browser's console and jQuery will be loaded
var jq = document.createElement('script');
jq.type = 'text/javascript';
jq.src = '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js';
document.head.appendChild(jq);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment