Combining multiple Javascript files into a single file
Hi Guys,
I'm currently working with a third party template. This template loads several javascript files up front and others at different points in the template. I'm not a wiz at web development and I've never used more than one javascript file at a time. My question is, Is there any reason why I could not combine these files into a single file providing that there are no duplicate function names? This is an example of some of the script files that are being loaded.
<script type="text/javascript" src="../javascript/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="../javascript/jquery.cookie.js"></script>
<script type="text/javascript" src="../javascript/jquery-ui-1.8.11.custom.min.js"></script>
<script type="text/javascript" src="../javascript/special_functions.js"></script>
<script type="text/javascript" src="../javascript/hoverIntent.js"></script>
<script type="text/javascript" src="../javascript/superfish.js"></script>Thanks In Advance
