What is jQuery's ajax default timeout value? [duplicate] What is jQuery's ajax default timeout value? [duplicate] jquery jquery

What is jQuery's ajax default timeout value? [duplicate]


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 call setTimeout().