Skip to content

Instantly share code, notes, and snippets.

@ckng
Created August 16, 2012 09:17
Show Gist options
  • Save ckng/3368678 to your computer and use it in GitHub Desktop.
Save ckng/3368678 to your computer and use it in GitHub Desktop.
Load jQuery into browser console
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.7.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