Category Archives: Performance

JavaScript performance

There is an exciting trend in the browser market today. A war is being fought over JavaScript performance. The browsers each seem to be trying to outdo each other with optimizing their JavaScript engines. Firefox has drastically improved their engine … Continue reading

Posted in JavaScript, MooTools, Performance | Leave a comment

MooZoom extension for MooTools

Apple.com at one point had a nifty effect on their website that would zoom a thumbnail image to a full image. Many people have created JavaScript solutions to imitate this feature. The problem with existing solutions (see FancyZoom and ReMooz) is that … Continue reading

Posted in JavaScript, MooTools, Performance | Leave a comment

Amazon S3 cloud storage and content delivery networks

Recently, I discovered the joy of cloud storage. Cloud storage is simply an outsourced facility used to host static content on the web. Since storage is cheap, and bandwidth is getting cheaper, these hosted services are starting to become very … Continue reading

Posted in Performance | Leave a comment

How to optimize images

In this series, I have been going through several techniques web developers can use to improve the performance of their websites.  Previously I discussed using sprite images to reduce HTTP requests during page load.  This article will show several things … Continue reading

Posted in Performance, Usability | Leave a comment

Using CSS sprite images

Previously, I discussed how the #1 problem with slow-loading websites is often the number of separate HTTP requests, and I demonstrated the method I use to optimize requests for JavaScript and CSS.  Now lets talk about images. Images and icons … Continue reading

Posted in Performance, Usability | Leave a comment