Skip to content

Instantly share code, notes, and snippets.

@Trindaz
Created September 17, 2012 03:48
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 Trindaz/3735444 to your computer and use it in GitHub Desktop.
Save Trindaz/3735444 to your computer and use it in GitHub Desktop.
Inject JQuery to any webpage at runtime
var script=document.createElement('script');
script.attributes["src"]="http://code.jquery.com/jquery-latest.min.js"
var head=document.getElementsByTagName('head')[0];
head.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment