Skip to content

Instantly share code, notes, and snippets.

@nelsonauner
Created October 14, 2015 19:27
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
load jquery inside any window
//adapted from http://stackoverflow.com/questions/5256583/run-my-own-script-inside-chromes-debugger-console
s = document.createElement('script');
s.src = 'https://code.jquery.com/jquery-2.1.4.min.js';
document.body.appendChild(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment