Skip to content

Instantly share code, notes, and snippets.

@shvelo
Last active December 16, 2015 01:19
Show Gist options
  • Save shvelo/5354720 to your computer and use it in GitHub Desktop.
Save shvelo/5354720 to your computer and use it in GitHub Desktop.
Load jQuery on any page
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