I have a ton of jquery code in the .ready()
$(document).ready(function() {
//jQuery goodness in here.
How do I take all the code and just make it a .js file so I can just reference the script like any other script? Should i minify it? How do I do that?
I read this post: Enclosing external jQuery file in $(document).ready()
But it didn't help because I'm not sure how to actually implement it. Do I just copy the code exactly how it is and save it as a .js file? Then what about the minify process?
Thanks!