Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jkresner
Last active December 21, 2015 10:18
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 jkresner/6290691 to your computer and use it in GitHub Desktop.
Save jkresner/6290691 to your computer and use it in GitHub Desktop.
Add jQuery to any page via the browser console once it's loaded.
var _JQ = document.createElement('script');
_JQ.src = 'http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.min.js';
_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(_JQ);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment