Skip to content

Instantly share code, notes, and snippets.

@andersonfreitas
Created September 24, 2012 17:32
Show Gist options
  • Save andersonfreitas/3777173 to your computer and use it in GitHub Desktop.
Save andersonfreitas/3777173 to your computer and use it in GitHub Desktop.
Load jQuery on any page
this.scriptObject=document.createElement('script');
this.scriptObject.type='text/javascript';
this.scriptObject.src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js';
var ssc = document.getElementsByTagName('script')[0];
ssc.parentNode.insertBefore(this.scriptObject, ssc);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment