| |
|
For Internet Explorer, an ActiveXObject is used for declaring an XmlHttpRequest
object in Javascript.
//Code as below for IE:
xmlHttpObject = new ActiveXObject("Msxml2.XMLHTTP");
//For Other browsers, code as below:
xmlHttpObject = new XMLHttpRequest();
Note that XmlHttpObject used above is simply a variable for the respective
browsers.
|
|