English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

i want to learn AJAX. But have no idea about this..I just know than AJAX is abveration for asynchronous javascript and xml.

2006-07-29 17:10:30 · 6 answers · asked by php coder 1 in Computers & Internet Programming & Design

6 answers

AJAX is a combination of technologies (Javascript/XML/HTML) that work together to make Websites that update without refreshing the entire page. With AJAX you can update portions of a web page at a time.

Probably the most critical component of AJAX is the "XMLHttpRequest object". It allows the dynamic transfer of information with the need for a full page refresh.

Sites like Google Mail (Gmail.com) and Google Maps (google.com/maps) have really made AJAX popular.

I have included some links to AJAX Tutorials and examples. Hope this helps!

2006-07-29 17:28:52 · answer #1 · answered by Skippy 2 · 0 1

Whats AJAX and why is it useful?
by: marauder404 ( 45)
on ebay.com

--------------------------------

Asynchronous JavaScript and XML, or Ajax, is a web development technique for creating interactive web applications using a combination of:

* XHTML (or HTML) and CSS for presenting information
* The Document Object Model manipulated through JavaScript to dynamically display and interact with the information presented
* The XMLHttpRequest object to exchange data asynchronously with the web server. (XML is commonly used, although any format will work, including preformatted HTML, plain text, JSON and even EBML)

The earliest form of asynchronous remote scripting, Microsoft's Remote Scripting, was developed before XMLHttpRequest existed, and made use of a dedicated Java applet.

Like DHTML, LAMP, or SPA, Ajax is not a technology in itself, but a term that refers to the use of a group of technologies together. In fact, derivative/composite technologies based substantially upon Ajax, such as AFLAX, are already appearing.

Ajax applications look almost as if they reside on the user's machine, rather than across the Internet on a server. The reason: pages get updated, not entirely refreshed. “Every user's action that normally would generate an HTTP request takes the form of a JavaScript call to the Ajax engine instead”, wrote Jesse James Garrett, in the essay that first defined the term. “Any response to a user action that doesn’t require a trip back to the server — such as simple data validation, editing data in memory, and even some navigation — the engine handles on its own. If the engine needs something from the server in order to respond — if it’s submitting data for processing, loading additional interface code, or retrieving new data — the engine makes those requests asynchronously, usually using XML, without stalling a user’s interaction with the application.”

Traditional web applications essentially submit forms, completed by a user, to a web server. The web server responds by sending a new web page back. Because the server must submit a new page each time, applications run more slowly and awkwardly than their native counterparts.

Ajax applications, on the other hand, can send requests to the web server to retrieve only the data that is needed, usually using SOAP or some other XML-based web services dialect. On the client, JavaScript processes the web server response. The result is a more responsive interface, since the amount of data interchanged between the web browser and web server is vastly reduced. Web server processing time is also saved, since much of it is done on the client.

As an example of how Ajax works, consider a photography website that allows users to enter captions. With a traditional web application, the entire page including the image would need to be refreshed. With Ajax technologies, DHTML might replace just the caption text, resulting in a noticeably smoother transaction. (This example is actually how Flickr allows users to change photo captions.)



Guide ID: 10000000000062082Guide created: 11/15/05 (updated 01/14/06)

2006-07-29 17:23:17 · answer #2 · answered by DadOnline 6 · 0 0

AJAX is a household product like comet

2006-07-29 17:15:20 · answer #3 · answered by newpastorofgod 3 · 0 0

http://www.designplanet.biz/subtut-4.htm

2006-07-29 20:51:47 · answer #4 · answered by frappe179 3 · 0 0

http://en.wikipedia.org/wiki/AJAX

2006-07-29 17:16:33 · answer #5 · answered by Delfin 4 · 0 0

isn't it a football club in holland?

2006-07-29 17:13:39 · answer #6 · answered by Rock 4 · 0 0

fedest.com, questions and answers