Although it typically makes sense to pack all of your JavaScript into one file to improve page load time, there are cases where it makes more sense to house certain chunks of JS code in a separate file. Here’s a trick to help keep things organized.
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…