View Single Post
  #16 (permalink)  
Old 08-09-2007, 08:07 AM
kathir kathir is offline
D-Web Trainee
 
Join Date: Feb 2007
Posts: 25
kathir is on a distinguished road
Default 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
Reply With Quote