klikam na button, jest slide do góry, ale nie ma komunikatu;/
kod js z dolu szablonu:
- Kod: Zaznacz cały
<script type="text/javascript"><!--
$('#button-cart').bind('click', function() {
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: $('.half-2 input[type=\'text\'], .half-2 input[type=\'hidden\'], .half-2 input[type=\'radio\']:checked, .half-2 input[type=\'checkbox\']:checked, .half-2 select, .half-2 textarea'),
dataType: 'json',
success: function(json) {
$('.success, .warning, .attention, information, .error').remove();
if (json['error']) {
if (json['error']['option']) {
for (i in json['error']['option']) {
$('#option-' + i).after('<span class="error">' + json['error']['option'][i] + '</span>');
}
}
}
if (json['success']) {
$('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');
$('.success').fadeIn('slow');
$('#cart-total').html(json['total']);
$('html, body').animate({ scrollTop: 0 }, 'slow');
}
}
});
});
//--></script>
kod przycisków:
- Kod: Zaznacz cały
<a class="basket" id="button-cart"><?php echo $button_cart; ?></a>
<a class="wish" onclick="addToWishList('<?php echo $product_id; ?>');"><?php echo $button_wishlist; ?></a>
proszę o szybką pomoc!
//edit
dodałem na poczatku szablonu <div id="notification"></div> i działa, czy to poprawne??