Добавил аякс , получилось так :[CODE]$(".buy-but").click(function(){
$.ajax({
type: "GET",
url: $(this).attr('data-value')+"&quantity="+$(".input-sm").val(),
dataType: "html",
success: function(out){
alert("Товар добавлен в корзину");
}
});
});[/CODE]
$.ajax({
type: "GET",
url: $(this).attr('data-value')+"&quantity="+$(".input-sm").val(),
dataType: "html",
success: function(out){
alert("Товар добавлен в корзину");
}
});
});[/CODE]