Reputation: 5851
I new with jquery and I can do simple coding with it. and I want to know about these files more "Minified" "Uncompressed" and when I should use each one?
Upvotes: 7
Views: 5906
Reputation: 532465
The minified and compressed versions of each file are simply versions that have been reduced in size with the same functionality. Use them when you put your code into production. Use the "developer" versions while still making your web site and debugging your scripts.
Upvotes: 9
Reputation: 223023
The minified version is for deployment, to minimise the size of downloads a user's browser has to make.
The uncompressed version is for development, since the minified version is very hard to debug with.
Upvotes: 2
Reputation: 630409
Uncompressed you use to develop, it's full of comments and useful variable names. Minified you use to actually send to clients to save you some bandwidth and them some loading time.
Minified is effectively the same code, but no comments and a variable like elementTagName
may simple be t
...not very useful for debugging.
Upvotes: 9