Вот мой код:
$(".addToCart").click(function() { $.ajax({ url: baseURL + "/shop/addToCart", type: "GET", dataType: "json", data: { item_id: $(this).attr('data-id') }, success: function(result) { alert('added'); location.reload(); }, }); });