Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created April 10, 2015 10:25
Show Gist options
  • Save z-------------/33350120b304fca2eeb0 to your computer and use it in GitHub Desktop.
Save z-------------/33350120b304fca2eeb0 to your computer and use it in GitHub Desktop.
var loadScriptAsync = function(url, callback){
var elem = document.createElement("script");
elem.src = url;
document.body.appendChild(elem);
elem.addEventListener("load", callback);
};
/*
loadScriptAsync("https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js", function(e){
console.log(jQuery);
});
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment