ajax
chat form validation
auto complete
Ajax stands for Asynchronous Javascript and XML, but what it really means is a way for web pages to query the server without reloading the entire page. Without Ajax, submitting information back to the server involves submitting the entire page back to the server and refreshing the entire page in the browser. But with Ajax, the entire page doesnt need to be submitted. In javascript the browser can make a request in the background to the server. The Asynchronous comes from the fact that the request happens in the background while the user is looking at the page. When the javascript web request finishes it returns data to the browser, sometimes as XML. Its not always XML, a lot of times its JSON or text, but XML was first and that was how it was named. The browser then manipulates the data returned and uses DHTML to display it.

