In previous posts, I’ve shown different ways to build a client-side class browser, using the ASP.NET Ajax Libary and jQueryIn this post, I’ll focus on a few lines of code from the latest version of that sample.
Those few lines of code enable my custom script to benefit from the script loader’s features such as lazy and parallel loading and dependency managementAn important feature of the script loader is the separation of the script meta-data from the script code itself.
The meta-data can include the name of the script, its dependencies, instructions on how to figure out if it’s already loaded, its debug and release URL patterns and a declaration of the lazy components and plug-ins it introduces.
The script loader can also handle composite...(
read more)

.