$('#openCase').click(function() {
$.ajax({
url: /core.php,
type: 'POST',
dataType: 'json',
data: {
action: 'open',
'case': currentitem,
'Price': price
},
success: function(data) {
if (data.status == 'success') {
updateBalance(data)
} else {
opening = false;
}
},
error: function() {
alert('Произошла ошибка! Попробуйте еще раз');
that.text(prevHtml).attr('disabled', null)
opening = false;
}
})
})