Skip to content

Instantly share code, notes, and snippets.

@fschell
Created March 4, 2014 10:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fschell/9343688 to your computer and use it in GitHub Desktop.
Save fschell/9343688 to your computer and use it in GitHub Desktop.
inject jQuery into console
var jq = document.createElement('script');
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
jQuery.noConflict();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment