↧
Javascript Optimization Tip: Merging JS files
A major component of optimizing your client side scripts (JavaScript) is reducing the number of http connections required. In other words, reducing the number of individual scripts that are loaded with...
View ArticleReducing your JavaScript load
I've written a couple articles on this blog that speak to the advantages of keeping all of your JavaScript in a single file, even it's not used on every page (running portions of the script...
View Article