﻿$(function () {
    // global ajax error handling
    $(document).ajaxError(function (e, xhr, settings, exception) {
        alert("서버 통신중 에러가 발생하였습니다.");
    });
});
