$(document).on('submit', '#GetAjax', function(){
$('#AjaxLoadImg').show(); // показали прелоадер
$.ajax({
type: 'POST',
url: 'script.php',
success: function(response){
$('#AjaxLoadImg').hide(); // скрыли прелоадер
console.log(response)
}
});
return false;
}); $.ajax({
type: 'POST',
url: '/ajax.php,
data: {
brand_name: $('#filter_auto_brand').val()
},
beforeSend: function() {
alert( "beforeSend" );
},
success: function(data) {
alert( "success" );
},
error: function() {
alert('Server is down');
}
});