Without the support for this object, the browser would not be able to exchange data with the web server and update parts of the page without reloading the entire page. With Ajax, we can make GET and POST HTTP requests. However, there are some limitations to XMLHttpRequest object. These are mainly for security reasons. First, this object can only make HTTP(S) requests. References to File URLs are not supported. Secondly, it can make requests only to the same domain as the currently loaded page. If XMLHttpRequest allowed requests to any website, it could be used for malicious purposes.

Example

We will use the following HTML for the examples listed below.

Syntax

To ensure that all browsers, including IE5 and IE6, will be supported, you first check if the browser supports the XMLHttpRequest object. If it does, then create an XMLHttpRequest object. If it does not, create an ActiveXObject. There have been several versions released with each subsequent release of the MSXML library. Each release brings with it better stability and speed, so you want to make sure you are always using the most recent version available on the user’s machine. If you want to make sure that you are supported IE5, you will need to check against ActiveXObject(“Microsoft.XMLHTTP”). It isn’t necessary to check for each ActiveXObject version. If you are not interested in supporting IE5, but you do want to support IE6, you could check back to MSXML2.XMLHTTP.3.0.

XMLHTTPRequest Methods

XMLHTTPRequest Properties

Here is another method for creating the XMLHTTPRequest object. You would call the function and check if the variable assigned is not NULL. If it is NULL, log the error or inform the user that the browser does not support the XMLHTTPRequest object. Using a try or catch block is a good idea when using ActiveXOjbects because any failure to create an object will throw an error. Here is a simple example that uses a combination of the recommendations provided so far. In this example, we attempt to create the native XMLHTTPRequest object. If we are not successful, we try to create the ActiveXObject. If that is not successful, we catch the error.

Example

Here is another way to write the JavaScript code. This approach organizes the various portions of the Ajax code into distinct functions.