|
|
|
| |
|
|
AJAX
What is Ajax?
Ajax (Asynchronous JavaScript And XML) is a group of interrelated web development techniques used on the client-side to create interactive web applications. With Ajax, web applications can retrieve data from the server asynchronously in the background without interfering with the display and behavior of the existing page. The use of Ajax techniques has led to an increase in interactive or dynamic interfaces on web pages and better quality of web services due to the asynchronous mode. Data is usually retrieved using the XMLHttpRequest object.
Technologies
Ajax is a not a technology in itself but a group of technologies. Ajax uses a combination of (a) HTML and CSS for presentation (b) The Document Object Model for dynamic display of and interation with data (c) XML and XSLT for the interchange, manipulation and display of data(d) THe XMLHttpRequest object for asynchronous communication (e) JavaScript to bring these technologies together.
More ...
Related Articles:
|