Ajax:: AJAX, Is A Web Development Technique For Creating Interactive Web Applications
Ajax:: AJAX, Is A Web Development Technique For Creating Interactive Web Applications
Ajax:: AJAX, Is A Web Development Technique For Creating Interactive Web Applications
AJAX cannot work independently. It is used in combination with other technologies to create
interactive webpages.
JavaScript
Loosely typed scripting language.
JavaScript function is called when an event occurs in a page.
Glue for the whole AJAX operation.
DOM
API for accessing and manipulating structured documents.
Represents the structure of XML and HTML documents.
CSS
Allows for a clear separation of the presentation style from the content and may be
changed programmatically by JavaScript.
XMLHttpRequest
JavaScript object that performs asynchronous interaction with the server.
AJAX Examples
Here is a list of some famous web applications that make use of AJAX.
Google Maps
A user can drag an entire map by using the mouse, rather than clicking on a button.
http://maps.google.com/
Google Suggest
As you type, Google will offer suggestions. Use the arrow keys to navigate the results.
http://www.google.com/webhp?complete=1&hl=en
Gmail
Gmail is a webmail, built on the idea that email can be more intuitive, efficient and useful.
http://gmail.com/
Yahoo Maps (new)
Now it's even easier and more fun to get where you're going!
http://maps.yahoo.com/
try{
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
}catch (e){
<form name='myForm'>
Name: <input type='text' name='username' /> <br />
Time: <input type='text' name='time' />
</form>
</body>
</html>
In the above JavaScript code, we try three times to make our XMLHttpRequest object. Our
first attempt:
ajaxRequest = new XMLHttpRequest();
It is for Opera 8.0+, Firefox, and Safari browsers. If it fails, we try two more times to make
the correct object for an Internet Explorer browser with:
ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
If it doesn't work, then we can use a very outdated browser that doesn't support
XMLHttpRequest, which also means it doesn't support Ajax.
AJAX - XMLHttpRequest
The XMLHttpRequest object is the key to AJAX. It has been available ever since Internet
Explorer 5.5 was released in July 2000, but was not fully discovered until AJAX and Web 2.0
in 2005 became popular.
XMLHttpRequest (XHR) is an API that can be used by JavaScript, JScript, VBScript, and
other web browser scripting languages to transfer and manipulate XML data to and from a
webserver using HTTP, establishing an independent connection channel between a webpage's
Client-Side and Server-Side.
The data returned from XMLHttpRequest calls will often be provided by back-end databases.
Besides XML, XMLHttpRequest can be used to fetch data in other formats, e.g. JSON or
even plain text.
Listed below is listed are some of the methods and properties that you have to get familiar
with.
XMLHttpRequest Methods
abort()
Cancels the current request.
getAllResponseHeaders()
Returns the complete set of HTTP headers as a string.
getResponseHeader( headerName )
Returns the value of the specified HTTP header.
open( method, URL )
open( method, URL, async )
open( method, URL, async, userName )
open( method, URL, async, userName, password )
Specifies the method, URL, and other optional attributes of a request.
The method parameter can have a value of "GET", "POST", or "HEAD". Other HTTP
methods, such as "PUT" and "DELETE" (primarily used in REST applications) may
be possible.
The "async" parameter specifies whether the request should be handled
asynchronously or not. "true" means that the script processing carries on after the
send() method without waiting for a response, and "false" means that the script waits
for a response before continuing script processing.
send( content )
Sends the request.
setRequestHeader( label, value )
Adds a label/value pair to the HTTP header to be sent.
XMLHttpRequest Properties
onreadystatechange
An event handler for an event that fires at every state change.
readyState
The readyState property defines the current state of the XMLHttpRequest object.
The following table provides a list of the possible values for the readyState property:
State Description
0 The request is not initialized.
1 The request has been set up.
2 The request has been sent.
3 The request is in process.
4 The request is completed.
readyState = 0 After you have created the XMLHttpRequest object, but before you
have called the open() method.
readyState = 1 After you have called the open() method, but before you have called
send().
readyState = 2 After you have called send().
readyState = 3 After the browser has established a communication with the server,
but before the server has completed the response.
readyState = 4 After the request has been completed, and the response data has been
completely received from the server.
responseText
Returns the response as a string.
responseXML
Returns the response as XML. This property returns an XML document object, which
can be examined and parsed using the W3C DOM node tree methods and properties.
status
Returns the status as a number (e.g., 404 for "Not Found" and 200 for "OK").
statusText
Returns the status as a string (e.g., "Not Found" or "OK").
AJAX - Action
Steps of AJAX Operation
try{
ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
}catch (e){
function validateUserId() {
ajaxFunction();
function validateUserId() {
ajaxFunction();
If we assume that you are going to write a servlet, then here is the piece of code.
function processRequest() {
if (req.readyState == 4) {
if (req.status == 200) {
var message = ...;
...
}
The HTML DOM is Updated
This is the final step and in this step, your HTML page will be updated. It happens in the
following way:
document.getElementById("userIdMessage"),
// where "userIdMessage" is the ID attribute
// of an element appearing in the HTML document
JavaScript may now be used to modify the element's attributes; modify the element's
style properties; or add, remove, or modify the child elements. Here is an example:
<script type="text/javascript">
<!--
function setMessageUsingDOM(message) {
var userMessageElement = document.getElementById("userIdMessage");
var messageText;
if (message == "false") {
userMessageElement.style.color = "red";
messageText = "Invalid User Id";
}
else
{
userMessageElement.style.color = "green";
messageText = "Valid User Id";
}