I got a bug report that I can’t duplicate, but ajax-call timeout is the current best guess.
So I’m trying to find out the default value for timeout of a jQuery $.ajax() call. Anybody have an idea? Couldn’t find it in jQuery documentation.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There doesn’t seem to be a standardized default value. I have the feeling the default is
0, and the timeout event left totally dependent on browser and network settings.For IE, there is a timeout property for XMLHTTPRequests here. It defaults to null, and it says the network stack is likely to be the first to time out (which will not generate an ontimeout event by the way).