Skip to content

Instantly share code, notes, and snippets.

@victorstanciu
Created October 15, 2012 14:28
Show Gist options
  • Save victorstanciu/3892747 to your computer and use it in GitHub Desktop.
Save victorstanciu/3892747 to your computer and use it in GitHub Desktop.
Lazy load JS files
function load_script(src, callback) {
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = src;
script.onload = callback;
script.onreadystatechange = function() {
if (this.readyState == 'loaded' || this.readyState == 'complete') {
callback();
}
}
head.appendChild(script);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment