<a class="add-to-cart" id="qty" data-id="<?= $gainer['id'] ?>" href="#" acturl="<?= Url::to(['product/view', 'id' => $gainer['id']]) ?>">Купить</a>
function show()
{
$.ajax({
url: "/cart/count-cart",
cache: false,
success: function(html){
$("#content").html(html);
}
});
}
$(document).ready(function(){
show();
setInterval('show()',1000);
$('.add-to-cart').click(finction(){
$.ajax({
url: $( this ).attr('acturl');,
cache: false,
success: function(html){
show();
}
});
});
});