Skip to content

Instantly share code, notes, and snippets.

@netj
Created July 17, 2012 09:14
Show Gist options
  • Save netj/3128260 to your computer and use it in GitHub Desktop.
Save netj/3128260 to your computer and use it in GitHub Desktop.
Inject jQuery — Add jQuery to the current web page
/* Created with YouScript Bookmarklet Editor
* http://netj.github.com/youscript
*/
var s = document.createElement("script");
s.src = "http://code.jquery.com/jquery-latest.min.js";
document.body.appendChild(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment