Skip to content

Instantly share code, notes, and snippets.

@marcosinger
Last active October 5, 2015 08:48
Show Gist options
  • Save marcosinger/2781490 to your computer and use it in GitHub Desktop.
Save marcosinger/2781490 to your computer and use it in GitHub Desktop.
Append jQuery on the fly
javascript:(
function(){
a=document.createElement('SCRIPT');
a.type='text/javascript';
a.src='http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js';
document.getElementsByTagName('head')[0].appendChild(a);
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment