Overview of Ajax
Internet Explorer uses an ActiveX object to create its XMLHttpRequst object:
Var myRequest = new ActiveXObject (”Microsoft.XMLHTTP”);
While Mozilla/FireFox and Safari use a native object:
Var myRequest = new XMLHttpRequest ();
Here are the basic technologies involved in Ajax applications:· 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 is used 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, and in other implementations, dynamically added


