Skip to content

Instantly share code, notes, and snippets.

@tatethurston
Created September 24, 2015 19:12
Show Gist options
  • Save tatethurston/1642eb87319fc554788c to your computer and use it in GitHub Desktop.
Save tatethurston/1642eb87319fc554788c to your computer and use it in GitHub Desktop.
JavaScript: Add jQuery
/*
Add jQuery to current page so it is available in console
*/
var script = document.createElement('script');
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment