Basic AJAX Question:
Download Questions PDF

How do we get the XMLHttpRequest object in AJAX?

Answer:

Depending upon the browser...
if (window.ActiveXObject)
{
// Internet Explorer http_request = new ActiveXObject("Microsoft.XMLHTTP");
}
else if.

Download AJAX Interview Questions And Answers PDF

Previous QuestionNext Question
How do we debug JavaScript? How do we handle concurrent AJAX requests?