$.ajax({
url: '<?php echo HTTP_SERVER; ?>index.php?route=module/related_options/get_to_free_quantity&roid='+roid,
dataType : "text",
success: function (data) {
alert('test 12.5');
if (parseInt(data) < parseInt( $('input[type=text][name=quantity]').val() )) {
$('.success, .warning').remove();
$('div[class=cart]').after('<div class="warning">'+erros_msg.replace('%s',parseInt(data))+'</div>');
alert('test 13');
} else {
if (add_to_cart) {
$('#button-cart').attr('allow_add_to_cart','allow_add_to_cart');
$('#button-cart').click();
alert('test 14');
}
}
}
});
Вот что у меня, что тут неправильного для ишака? Запросы вообще не отсылаются, так, что на суцесс можно не смотреть