Skip to content

Instantly share code, notes, and snippets.

@jrickerd
Created July 19, 2013 14:39
Show Gist options
  • Save jrickerd/6039574 to your computer and use it in GitHub Desktop.
Save jrickerd/6039574 to your computer and use it in GitHub Desktop.
Inject jquery into page
var script = document.createElement("script");
script.src = "http://code.jquery.com/jquery-latest.min.js";
document.body.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment