Skip to content

Instantly share code, notes, and snippets.

@nelsonauner
Created October 14, 2015 19:27
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 nelsonauner/4129d4d46a4f9ddf58b2 to your computer and use it in GitHub Desktop.
Save nelsonauner/4129d4d46a4f9ddf58b2 to your computer and use it in GitHub Desktop.
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