2005
Ajax Tutorial - Part I
Sponsored Links
Introduction
Ajax is the current rising star in the web development field. Several popular company already started using Ajax, including: Google (Gmail, GMaps, GSuggest, GGroups), Amazon (A9.com), Flickr, and Orkut.
Ajax is not a new technology. It’s a new developing approach, based on the following existing technologies:
- XHTML and CSS for standard presentation,
- DOM (Document Object Model) for dynamic and interactive presentation,
- XML and XSLT for data exchange and manipulation, and
- XMLHttpRequest for asynchronius data retrieval
The foundation of Ajax is XMLHttpRequest object. It was first implemented by Microsoft on Internet Explorer 5 as an ActiveX object. Later, Mozilla engineers developed a compatible native version for Mozilla 1.0 (and Netscape 7), followed by Apple on their Safari 1.2 browser.
In short, the purpose of this XMLHttpRequest object is to handle data request asynchronously in the background for any web application who need to exchange and manipulate data on-the-fly without reloading the page. In traditional data processing, user submits the data through form, browser sends the data to the server, then server return the output through a new page, so browser need to load that new page in order to display the result to user.
On the next page, we will discuss more about XMLHttpRequest object.
Pages: 1 2
And while you're here, why don't you check out our other articles:
Pssst! Most people are coming to this page searching for:
We are pleased to offer you this exciting, new, and entirely free professional resource. Visit our 



[...] also wrote several tutorials on May, such as Smarty tutorial (part 1, 2, and 3), and Ajax tutorial (part 1 and [...]