$('form button').click(function(){
$this = $(this);
$form = $this.parents('form');
$act = $form.find('input[name=act]').val();
$this.addClass('loading').prop('disabled', true);
$.ajax({
'url': "/ajax/"+$act,
'type': "POST",
'dataType': "json",
'data': $form.serialize(),
'success': function($result) {
notification($result.msg, $result.response);
$this.removeClass('loading').prop('disabled', false); ;
},
error:function (xhr, ajaxOptions, thrownError){
$this.removeClass('loading').prop('disabled', false); ;
switch(xhr.status){
case '502':
notification('Слишком частые запросы!', 'error');
break;
}
}
});
});
Как вызвать данную функцию в
document.onkeyup = function (e) {
e = e || window.event;
if (e.keyCode === 13) {
//ТУТ
}
return false;
}