>>The idea of XMLHTTP is that you can return values to the page, without having to refresh the whole page. So, using XMLHTTP, you can return a status at various intervals to the page, to show what progress has been made
this is the function i found in that link:
xmlhttp.Open("POST", url, true);
// Register a callback for the call
xmlhttp.onreadystatechange =
function ()
{
if (xmlhttp.readyState == 4)
{
var response = xmlhttp.responseText;
divResponse.innerHTML += "<p>" + response + "</p>";
stopProgressBar();
}
}
// Send the actual request
xmlhttp.Send();
in XMLHTTP u have to wait for the requested page to execute entirely before javscript can act upon it. therefore the script can 'entertain' the users. it cannot show figures like 35%, 45%,50%,75% etc...
Known is handfull, Unknown is worldfull