I have an aspx page and imports jQuery, jTemplate and Flexigrid
Yes, if a script uses anything defined by another script during its initial load. Each script is loaded and evaluated in order, synchronously. (The downloads may be in parallel if the browser wants, but they'll be evaluated in order unless the defer or async attributes were specified and are supported by the browser.)
So for instance, at a guess I'd say at least the last two scripts use the jQuery
symbol defined by the first script, and so they must appear after it, or you'll see errors like ReferenceError: jQuery is not defined
.
The order of unrelated scripts doesn't matter, but where they build on each other (as in this case), it does.