Add your scripts
What does it do?
Turn this...
<script type="text/javascript" src="/js/jquery/jquery.js"></script>
<script type="text/javascript" src="/js/jquery/jquery.form.js"></script>
<script type="text/javascript" src="/js/myOwnScriptFile.js"></script>
<script type="text/javascript" src="/js/script2.js"></script>
Into this...
<script type="text/javascript" src="/js/scriptalizer.js"></script>
What?! It minifies too?!??!
Yep, thats right. The combined javscript file is minfied. How bout them apples?
What is this "Minify" thing?
"Minify, in computer programming languages, is the process of removing all unnecessary characters from source code, without changing its functionality.
These unnecessary characters usually include white space characters, new line characters, comments and sometimes block delimiters; which are used to add readability to the code, but are not required for it to execute.
Minified source code is specially useful for interpreted languages deployed and transmitted on the Internet (such as JavaScript), because it reduces the amount of data that needs to be transferred.
Minified source code may also be used as a kind of obfuscation."