Skip to content

Instantly share code, notes, and snippets.

@lovemyliwu
Created November 18, 2015 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lovemyliwu/3f42054e1b33d5eb7532 to your computer and use it in GitHub Desktop.
Save lovemyliwu/3f42054e1b33d5eb7532 to your computer and use it in GitHub Desktop.
Load JQuery from anywhere
var script = document.createElement('script');
script.onload = function() {
jQuery.noConflict();
if (callback) {
callback(jQuery);
}
};
script.src = "http://code.jquery.com/jquery-2.1.1.min.js";
document.getElementsByTagName('head')[0].appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment