
08-09-2007, 08:07 AM
|
| D-Web Trainee | | Join Date: Feb 2007
Posts: 25
| |
Re: Site Performance - Tips & Tricks Minify JavaScript Minification is the practice of removing unnecessary characters from code to reduce its size thereby improving load times. When code is minified all comments are removed, as well as unneeded white space characters (space, newline, and tab). In the case of JavaScript, this improves response time performance because the size of the downloaded file is reduced. The most popular tool for minifying JavaScript code code is JSMin, developed by Douglas Crockford, a fellow Yahoo!. Thanks -Kathir |