Created
June 3, 2014 19:49
-
-
Save theodesp/1d09ffa9fa92fbe40da4 to your computer and use it in GitHub Desktop.
Simple Script Loader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Script loader | |
* scriptloader.js | |
* | |
* A simple Javascript script loader | |
* Created by Theo Despoudis | |
* (c) 2014 Theo Despoudis. MIT open-source license. | |
*/ | |
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