$.ajax({
url: mod,
dataType: 'json',
type: 'POST',
async: true,
cache: false,
contentType: false,
processData: false,
data: formData,
error: function(data, textStatus, xhr){
if(error!=undefined){
error(data, textStatus, xhr);
}else{
console.log(data);
return that.notify('Произошла ошибка выполнения запроса. Обратитесь к администрации');
}
},
success: function(data, textStatus, xhr){
success(data, textStatus, xhr);
if(disable_loading==undefined){ that.loading(false); }
}
});