XMLHttpRequest in Ajax and PHP
Posted
by ajithperuva
on Stack Overflow
See other posts from Stack Overflow
or by ajithperuva
Published on 2010-03-30T12:17:57Z
Indexed on
2010/03/30
12:23 UTC
Read the original article
Hit count: 270
AJAX
In internet explorer we can create the object of ActiveXObject like follows
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async="false";
xmlDoc.load("note_error.xml");
It is possible to use the xmlDoc.load("note_error.xml"); for the object of XMLHttpRequest in other browsers.If no,any other substitute for this method when we use XMLHttpRequest.Please help...am using firefox as my browser
© Stack Overflow or respective owner