PDA

View Full Version : http.readyState


para15000
05-23-2007, 06:31 PM
I have this script right

with ajax

works perfectly in firefox and doesn't work at all in IE

I catch the data from the script using

function handleResponse()
{

alert("readystate: "+http.readyState)

if(http.readyState == 4)
{
//bla bla bla
}

}

now on ie http.ready state is always 1 it never goes past it.
what can the problem be?

glenngv
05-23-2007, 07:04 PM
Can you post more code or a link to the page?