проблема похожая видимо как у автора
if (roid) {
alert('test 12');
$.ajax({
type: 'GET',
url: '<?php echo HTTP_SERVER; ?>index.php?route=module/related_options/get_to_free_quantity&roid='+roid,
dataType: 'text', // тип загружаемых данных
success: function (data) { // вешаем свой обработчик на функцию success
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');
}
}
}
});
}
во всех браузерах все ок, кроме
ие8 отображается все кроме аллерта 12.5, в чем косяк?