i am making ajax calls with jquery like this
and sometimes i get the ajax errors, and i get xhr status as 408. what does that mean?
i am making ajax calls with jquery like this
and sometimes i get the ajax errors, and i get xhr status as 408. what does that mean?
Its a Request Timeout
The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications at any later time.
408 is really an HTTP status code, and it means that your request timed out:
408 Request Timeout
The server timed out waiting for the request.[2] According to W3 HTTP specifications: "The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications at any later time."