Skip to content

Instantly share code, notes, and snippets.

@philipstanislaus
Created January 29, 2016 08:38
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 philipstanislaus/490ed6f802732f8df5a1 to your computer and use it in GitHub Desktop.
Save philipstanislaus/490ed6f802732f8df5a1 to your computer and use it in GitHub Desktop.
Include jQuery in any page from console
var jq = document.createElement('script');
jq.src = "http://code.jquery.com/jquery-2.2.0.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