Article


By mondala
Published: July 27, 2006
Print    Email

What is AJAX?

I've seen many new technologies or aliases of come about in the last few years. Much of the technology is still foreign to me because I will never directly be able to utilize it as I am a useless programmer. However, for outsourced projects that may some day require fancy functions or bells and whistles, I should at least gain a basic insight as to what is out there, what is hot, what does what, etc so I can make decisions about what I want....... so to start,,,,,,,, I want to know what the heck is "AJAX"!?

A quick conclusion from my research shows that the main function of "AJAX" is interactivity behind the scenes / code at the server level performing actions or queries etc then returning the results without having to refresh the page. Makes sense. The result is an increase in a web page's interactivity, speed, and usability.

Ajax (programming)
From Wikipedia, the free encyclopedia

Ajax, shorthand for Asynchronous JavaScript and XML, is a web development technique for creating interactive web applications. The intent is to make web pages feel more responsive by exchanging small amounts of data with the server behind the scenes, so that the entire web page does not have to be reloaded each time the user makes a change. This is meant to increase the web page's interactivity, speed, and usability.

The Ajax technique uses a combination of:

  • XHTML (or HTML) and CSS, for marking up and styling information.
  • The DOM accessed with a client-side scripting language, especially ECMAScript implementations such as JavaScript and JScript, to dynamically display and interact with the information presented.
  • The XMLHttpRequest object to exchange data asynchronously with the web server. In some Ajax frameworks and in certain situations, an IFrame object is used instead of the XMLHttpRequest object to exchange data with the web server.
  • XML is sometimes used as the format for transferring data between the server and client, although any format will work, including preformatted HTML, plain text, JSON and even EBML. These files will be created dynamically by some for of Server-side scripting.

Like DHTML, LAMP and SPA, Ajax is not a technology in itself, but a term that refers to the use of a group of technologies together.

Who is using AJAX?

Oh,,,, Google, Amazon's A9 network, Flickr.com, Ask.com, Yahoo.com, MSN Spaces, and many more top websites / networks are utilizing AJAX.

AJAX Q&A - AJAX FAQ:

See the original article which coined the term; "Ajax: A New Approach to Web Applications" by Jesse James Garret " http://www.adaptivepath.com/publications/essays/archives/000385.php

AJAX Resources:



1884 Views - View Comments (0)