Skip to content

Instantly share code, notes, and snippets.

@benjaminrau
Created May 14, 2014 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjaminrau/3cb2764618d76bb851de to your computer and use it in GitHub Desktop.
Save benjaminrau/3cb2764618d76bb851de to your computer and use it in GitHub Desktop.
function addScript(src, callback) {
var s = document.createElement('script');
s.setAttribute('src', src);
s.setAttribute('type', 'text/javascript');
document.head.appendChild(s);
if (callback !== "undefined") {
s.onreadystatechange= function () {
if (this.readyState == 'complete') {
callback();
}
}
s.onload= callback;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment