Skip to content

Instantly share code, notes, and snippets.

@Calamari
Created March 1, 2013 22:02
Show Gist options
  • Save Calamari/5068231 to your computer and use it in GitHub Desktop.
Save Calamari/5068231 to your computer and use it in GitHub Desktop.
Minimal JavaScript loader
(function(win) {
"use strict";
win.jaz = win.jaz || {};
win.jaz.scriptLoader = function(src, cb) {
var script = document.createElement('script');
script.src = src;
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
script.onload = cb;
};
}(window));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment