w3schools
  
HOME HTML CSS XML JAVASCRIPT ASP PHP SQL MORE...   References Examples Forum About

AJAX - The XMLHttpRequest Object

« Previous Next Chapter »

AJAX - More about the XMLHttpRequest object

Before sending data off to a server, we will look at three important properties of the XMLHttpRequest object.


The onreadystatechange property

After a request to a server, we need a function to receive the data returned from the server.

The onreadystatechange property stores the function that will process the response from a server. The function is stored in the property to be called automatically.

The following code sets the onreadystatechange property and stores an empty function inside it:

xmlhttp.onreadystatechange=function()
{
// We are going to write some code here
}


The readyState property

The readyState property holds the status of the server's response.

Each time the readyState property changes, the onreadystatechange function will be executed.

Possible values for the readyState property:

StateDescription
0The request is not initialized
1The request has been set up
2The request has been sent
3The request is in process
4The request is complete

Add an If statement to the onreadystatechange function to test if the response is complete (means that now we can get our data):

xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
  {
  // Get data from the server's response
  }
}


The responseText property

The data sent back from a server can be retrieved with the responseText property.

Now, we want to set the value of the "Time" input field equal to responseText:

xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
  {
  document.myForm.time.value=xmlhttp.responseText;
  }
}

The next chapter shows how to ask a server for data!


« Previous Next Chapter »


The Creators of XMLSpy are Pleased to Announce

The MOST WANTED features for Developers and
IT Professionals in Version 2010

Collect your handsome reward! Download a free trial and experience more than 70 of the Most Wanted features including:

  • JSON editing & conversion in XMLSpy
  • WSDL 2.0 editing in XMLSpy (adding to WSDL 1.1 support)
  • WSDL 2.0 data mapping in MapForce
  • Numerous data mapping enhancements in MapForce
  • Numerous stylesheet design enhancements in StyleVision
  • XML Schema comparison in DiffDog
  • And much more!
Fully functional 30-day free trial of the Altova MissionKit
Altova XMLSpy


WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Top 10 Web Hosting
UK Reseller Hosting
Web Hosting
FREE Web Hosting
Top Web Hosting
Windows Hosting
WEB BUILDING
Download XML Editor
FREE Flash Website
FREE Web Templates
FLIGHT TICKETS
Find the cheapest flight
to any destination now!
EDUCATION
US Web Design Schools
HTML Certification
JavaScript Certification
XML Certification
PHP Certification
ASP Certification
STATISTICS
Browser Statistics
Browser OS
Browser Display