Skip to content

Instantly share code, notes, and snippets.

@jeremy2
Created November 1, 2012 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jeremy2/3990871 to your computer and use it in GitHub Desktop.
Save jeremy2/3990871 to your computer and use it in GitHub Desktop.
run this in your browser's javascript console, then jQuery should be available... (from http://stackoverflow.com/questions/7474354/include-jquery-in-the-javascript-console)
var jq = document.createElement('script');
jq.src = "http://code.jquery.com/jquery-latest.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