:
$(document).ajaxStart(function () {
$('.loading').show()
}).ajaxError(function (e, xhr, opts) {
$('.loading').hide();
}).ajaxComplete(function (e, xhr, opts) {
$('.loading').hide();
}).ajaxStop(function () {
$('.loading').hide();
});
beforeSend ajax:
$('#btn_src').on('click', function (e) {
$.ajax({
type: "POST",
url: "some_function",
async: true,
cache: false,
dataType: "json",
data: 'some_var',
beforeSend: function (msg) {
$('.loading').show();
}
success: function (data) {
},
complete: function () {
$('.loading').hide();
$('#myModal').modal('show');
}
});
});