scriptload
v0.2.0
Published
Asynchronously load one or more scripts while executing them in order.
Downloads
7
Readme
Scriptload
Asynchronously load one or more scripts while executing them in order. This version works in all modern browsers. If you need support down to IE8 install version 0.1.0
.
Usage
var load = require('scriptload');
load(['jquery.js', 'jquery-plugin.js'], function () {
// At this point both scripts have been loaded and executed.
});