what is ajax?
Ajax is a shorthand for Asynchronous JavaScript and XML. It is a web development technique for creating interactive web applications. Like DHTML and LAMP, Ajax is not a technology in itself, but a term that refers to the use of a group of technologies together.
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.
advantages of ajax
The intent of using Ajax 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, so:
- The web page becomes more responsive when Ajax is used.
- Ajax technology is supported by many browsers
- Web developers that have knowledge in basic web development applications can easily adapt to using Ajax
relevant books about ajax
|