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>
<link rel="stylesheet" href="/style/longstylesheet.css" type="text/css" />
<link rel="stylesheet" href="/style/anotherlongstylesheet.css" type="text/css" />
Into this...
<script type="text/javascript" src="/js/scriptalizer.js" ></script>
<link rel="stylesheet" href="/style/scriptalizer.css" type="text/css" />
What?! It minifies too?!??!
Yep, thats right. The combined javscript file is minfied. How bout them apples?
OMG IT COMPRESSES CSS?!!!!!!!!!11
Yes, calm down. The generated CSS file is compressed. It's going to be ok...really.
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."