Skip to content

Instantly share code, notes, and snippets.

@andhapp
Last active August 29, 2015 14:02
Show Gist options
  • Save andhapp/f7051c0e498e92359705 to your computer and use it in GitHub Desktop.
Save andhapp/f7051c0e498e92359705 to your computer and use it in GitHub Desktop.
// http://www.nczonline.net/blog/2009/06/23/loading-javascript-without-blocking/
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.body.appendChild(script);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment