Tuesday, July 22, 2008

Ajax Technology

Web Applications Building Got More Fun through Ajax Technology


Web applications are fun to build. They are like the fancy sportscar of Web sites. Web applications allow the designer and developer to get together and solve a problem for their customers that the customers might not have even know they had. That’s how the blogging tools like MovableType and Blogger came about after all. I mean, before Blogger, did you know you needed an online tool to build your Web site blog?

But most Web applications are slow and tedious. Even the fastest of them has lots of free time for your customers to go get a coffee, work on their dog training, or (worst of all) head off to a faster Web site. It’s that dreaded hourglass! You click a link and the hourglass appears as the Web application consults the server and the server thinks about what it’s going to send back to you.

Ajax is Here to Change That

Ajax (sometimes called Asynchronous JavaScript and XML) is a way of programming for the Web that gets rid of the hourglass. Data, content, and design are merged together into a seamless whole. When your customer clicks on something on an Ajax driven application, there is very little lag time. The page simply displays what they’re asking for. If you don’t believe me, try out Google Maps for a few seconds. Scroll around and watch as the map updates almost before your eyes. There is very little lag and you don’t have to wait for pages to refresh or reload.

What is Ajax?

Ajax is a way of developing Web applications that combines:

  • XHTML and CSS standards based presentation

  • Interaction with the page through the DOM

  • Data interchange with XML and XSLT

  • Asynchronous data retrieval with XMLHttpRequest

  • JavaScript to tie it all together

No comments: