load.js is a dependency loading script that allows for sequential and parallel loading of scripts.
It is built on top of the chain.js library, and has numerous features which make this loader quite potent for its size.
For example, you can load scripts the old-fashioned way, with a wait time before loading the script.
defer(500).thenLoad('myscript2.js');
You’d use load.js for managing your script loading, and for handling advanced issues that can happen during the loading time.
- Website: https://github.com/chriso/load.js















