Compress your JavaScript with this simple online tool
The JavaScript semicolon problem
In JavaScript it's possible to omit semicolons at special cases (bad language design, but it's there).
Normally, the compression will fail then, because our script is not smart enough to recognize these cases.
=> DON'T OMIT SEMICOLONS! Your code will not work after compression. Fix it!
Bad: x=10 Good: x=10;