XMLHttpRequest Object

Advertisements

Ajax Example Create Object in Ajax

XMLHttpRequest Object in Ajax

An object of XMLHttpRequest is used for asynchronous communication between client and server.

It performs following operations:

  • Sends data from the client in the background.
  • Receives the data from the server.
  • Updates the webpage without reloading it.

Properties of XMLHttpRequest object

PropertyDescription
onReadyStateChange It is called whenever readystate attribute changes. It must not be used with synchronous requests.
readyStaterepresents the state of the request. It ranges from 0 to 4.
  • 0 UNOPENED open() is not called.
  • 1 OPENED open is called but send() is not called.
  • 2 HEADERS_RECEIVED send() is called, and headers and status are available.
  • 3 LOADING Downloading data; responseText holds the data.
  • 4 DONE The operation is completed fully.

Methods of XMLHttpRequest Object

The important methods of XMLHttpRequest object are as follows:

PropertyDescription
void open(method, URL)opens the request specifying get or post method and url.
void open(method, URL, async)same as above but specifies asynchronous or not.
void open(method, URL, async, username, password)same as above but specifies username and password.
void send()sends get request.
void send(string)send post request.
setRequestHeader(header,value)it adds request headers.

All modern browsers support the XMLHttpRequest object (Except IE5 and IE6 use an ActiveXObject).

The XMLHttpRequest object is used to exchange data with a server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.

Create an XMLHttpRequest Object

All modern browsers (IE7+, Firefox, Chrome, Safari, and Opera) have a built-in XMLHttpRequest object.

Syntax for creating an XMLHttpRequest object:

Syntax

	
variable=new XMLHttpRequest();

Old versions of Internet Explorer (IE5 and IE6) uses an ActiveX Object:

Example

	
variable=new ActiveXObject("Microsoft.XMLHTTP");

To handle all modern browsers, including IE5 and IE6, check if the browser supports the XMLHttpRequest object. If it does, create an XMLHttpRequest object, if not, create an ActiveXObject.


Ajax Example Create Object in Ajax

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet


For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements