Network Computing is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.

Is Google Still The Ajax King?

Welcome, boys and girls, to the computing world of tomorrow! Desktop programs are a thing of the past, replaced by free, simple, Web-based apps that do everything from spreadsheets to e-mail -- and more!


Ajax Apps


•  Introduction

•  Calendars

•  E-Mail

•  Info Managers

•  Spreadsheets

•  Webtops

•  Word Processors


•  Image Gallery

Making it possible is Ajax (Asynchronous JAvaScript and XML), a programming technique that lends Web sites the same kinds of interactivity and speed that desktop programs have traditionally had. With Ajax, we'll no longer need desktop applications. Our data will be available to us everywhere we go, because it will all be stored on Ajax-based Web sites. Who needs Microsoft or other makers of desktop software? We're finally free!

That's the hype, anyway. But is it actually true?

To find out, we've scoured the Internet for the best Ajax-based sites in six categories: calendars, e-mail, information managers, spreadsheets, desktops (known in the Ajax world as webtops), and word processors. We've picked the winners and runners-up in each category, and taken a look at a few of the other competitors in each category as well.

What Exactly Is Ajax?


Ajax lets Web developers create interactive Web sites that function more like desktop programs than slow, static Web sites. Gmail and Google Maps are two of the most common examples of sites built using Ajax. A variety of techniques allow Ajax to place the interactivity directly within the browser, instead of the browser having to constantly contact a Web server to get information.

When someone visits an Ajax site, the browser loads the HTML page as it would normally. After that, though, Ajax uses JavaScript for interactivity. When a site visitor makes a request for more information -- for example, to fetch a map -- the JavaScript makes the request. The JavaScript doesn't make a request for information directly to a Web site, though -- instead, it uses an API called XMLHttpRequest to transfer the data back and forth. (The data requested is usually in XML format, although it doesn't have to be.) This allows the Web page and JavaScript to continue to interact with the user, while the XMLHttpRequest handles communications with the server.

JavaScript takes the information handed to it by the XMLHttpRequest, and then uses it or displays it. But only the portion of the page that needs the information is refreshed. This speeds up the display of information, because the entire page doesn't have to be changed.

  • 1