AJAX which stands for asynchronous javascript and xml is a technology which uses asynchronous data transfer instead of synchronous data tranfer between the web page and browser. This means that multiple connections are opened between the browser and the web page at a time so the whole process of data transfer is speeded up in this case.Normally style tags and scripts are parsed one at a time using a single connection.But now using xmlhttprequest object or Microsoft eqvivalent Active X object all the style and script tags are parsed together at the same time using multiple connections. Below i am giving you people an example of Ajax Here we retrive the contents of testingajax html document and show it in a alert box. Ajax Testing Call page using Asynchronous javascript and xml Now ur testingajax.html will contain response ajax Hello from Rohit D'souza Thats all