네트워크 연결 끊김으로 인한 Ajax 호출 실패를 감지하는 방법 jquery ajax method를 사용하여 많은 데이터를 웹서버로 보내고 있고 클라이언트측은 서버로부터 승인을 받은 후에야 응답하는데, 이제 ajax call 도중에 네트워크 연결이 끊겼다고 가정하고 어떻게 이 상황을 탐지할 것인지를 가정해 보겠습니다. $.ajax({ url:'server.php', data:'lots of data from 200KB to 5MB', type:'post', success: function(data) { alert('Success'); //some stuff on success }, error: function(XMLHttpRequest, textStatus, errorThrown) { alert('Fai..