Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Last active December 12, 2015 06:59
Show Gist options
  • Save pbojinov/4733734 to your computer and use it in GitHub Desktop.
Save pbojinov/4733734 to your computer and use it in GitHub Desktop.
Add jQuery to page in JSONP like manner
/**
* Add jQuery to page in JSONP like manner
*/
(function() {
var head = document.getElementsByTagName('head')[0],
script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js';
head.appendChild(script);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment