I have an object XMLHttpRequest called xhttp, on my specified timeout, i wish to cancel
the request and unset the object to try again later on.
Somehow, it didnt work as expected.
alert(typeof(xhttp));
xhttp.abort();
alert(typeof(xhttp));
xhttp=null;
alert(typeof(xhttp));
delete xhttp;
alert(typeof(xhttp));
All four alerts return 'object'.
BrowserNG 7.1.4 / N97 & N97 Mini
Any hints?


Reply With Quote


