This question already has an answer here:
- JQuery ajax call default timeout value 4 answers
Does anyone know what the default jQuery ajax timeout value is?
This question already has an answer here:
Does anyone know what the default jQuery ajax timeout value is?
The default is
0
(technically it's undefined, but behaves as 0). This means no timeout in jQuery itself...if the browser has some timeout it's entirely possible you'll hit that.Only when a
timeout
option is specified does jQuery even callsetTimeout()
.