Skip to content

Instantly share code, notes, and snippets.

@deanohyeah
Created September 4, 2013 18:18
Show Gist options
  • Save deanohyeah/6440738 to your computer and use it in GitHub Desktop.
Save deanohyeah/6440738 to your computer and use it in GitHub Desktop.
Load a script with a call back when it is done loading. For scripts that depend on each other
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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment