Skip to content

Instantly share code, notes, and snippets.

@wpsmithtwc
Created August 1, 2018 22:03
Show Gist options
  • Save wpsmithtwc/e637d9070e9eeb2a3b9aa71f003e7a04 to your computer and use it in GitHub Desktop.
Save wpsmithtwc/e637d9070e9eeb2a3b9aa71f003e7a04 to your computer and use it in GitHub Desktop.
JavaScript: Inject jQuery with JavaScript into head.
;(function() {
var tag = document.createElement('script');
tag.src = '//code.jquery.com/jquery.min.js';
tag.type = 'text/javascript';
tag.async = 'true';
var hookTag = document.getElementsByTagName('head')[0];
hookTag.appendChild(tag);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment