Skip to content

Instantly share code, notes, and snippets.

@jheth
Created August 27, 2014 20:04
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 jheth/793c512506111e1fd721 to your computer and use it in GitHub Desktop.
Save jheth/793c512506111e1fd721 to your computer and use it in GitHub Desktop.
Load jQuery from Console
var jq = document.createElement('script');
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type.
jQuery.noConflict();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment