Skip to content

Instantly share code, notes, and snippets.

@amitasaurus
Created August 6, 2018 06:06
Show Gist options
  • Save amitasaurus/fb4ae1b63aadbce30e6e3ae5698c3b75 to your computer and use it in GitHub Desktop.
Save amitasaurus/fb4ae1b63aadbce30e6e3ae5698c3b75 to your computer and use it in GitHub Desktop.
Loading Scripts from JS
function loadScript(url, callback){
var script = document.createElement("script")
script.type = "text/javascript";
if (script.readyState){ //IE
script.onreadystatechange = function(){
if (script.readyState == "loaded" ||
script.readyState == "complete"){
script.onreadystatechange = null;
callback();
}
};
} else { //Others
script.onload = function(){
callback();
};
}
script.src = url;
document.getElementsByTagName("head")[0].appendChild(script);
}
//USAGE
/*
loadScript("http://your.cdn.com/second.js", function(){
//initialization code
});
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment