readystate in ajax

Solutions on MaxInterview for readystate in ajax by the best coders in the world

showing results for - "readystate in ajax"
Malena
20 Sep 2018
1unsent/not initialize-0
2request setup-1
3request sent-2 
4process/loading - 3
5complete/success-4 
Lautaro
21 Apr 2019
1//Ajax 5 states of requests
20   UNSENT  open() has not been called yet.
31   OPENED  send() has been called.
42   HEADERS_RECEIVED    send() has been called, and headers and status are available.
53   LOADING Downloading; responseText holds partial data.
64   DONE    The operation is complete.
7