I am developing a page with many of AJAX methods.
what i want to do is, inside a javascript function, there is a loop. inside this loop i want to call the AJAX methods and retrieve the response text.
when i do that i recieve an exception telling me that the data is not available yet. because the readyState is 1 (loading) not 4 (finish).
how can i access the response text while the readyState is 1?
thanks.