Skip to content

Instantly share code, notes, and snippets.

@spsaucier
Created July 20, 2013 06:25
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spsaucier/6044069 to your computer and use it in GitHub Desktop.
Save spsaucier/6044069 to your computer and use it in GitHub Desktop.
Include jQuery through 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