I have used a simple AJAX call in a webpage.
The webpage is like this. On clicking the submit button the javascript sends the data in a text box to server and displays the response in a div.
My AJAX code is:
var xmlHttp = null;
var api="getdetails.jsp?id=";
var theUrl=api.concat(theId);
xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false );
xmlHttp.send();
document.getElementById("details").innerHTML=xmlHttp.responseText;
But the problem is that while waiting for the AJAX response the webpage becomes inactive. That is, the user cannot type in text box or click any other link or so. Nothing can be done till the response is received.
My question is how can I make the webpage to be fuctional while waiting for the response? Do I have to employ multi-threading or any other way?