$("#open_shopping_cart").click(function () { window.location.href = "/gio-hang"; }); $("#item-shoppingcart").click(function () { window.location.href = "/gio-hang"; }); function GoToCart($id, $quanlity) { var formContainer = $("#cart" + $id); $.ajax({ url: "/Cart/Index", type: 'POST', cache: false, data: ({ slug_lv1: $id, slug: $quanlity, __RequestVerificationToken: $('input[name=__RequestVerificationToken]').val() }), success: function (data) { if (data.IsSuccess) { //console.log("OK"); //formContainer.find("input[type='text']").each(function (i, element) { // jQuery(this).val(''); //}); $.notify({ message: "Thêm sản phẩm vào giỏ hàng thành công!", }, { type: 'success', placement: { align: "right", from: "bottom" }, spacing: 5 } ); $("#item-shoppingcart").html(data.Message); $("#open_shopping_cart").html(data.Message); } else { $.notify({ message: "Vui lòng thử lại sau", title: "Thông báo: ", }, { type: 'warning', placement: { align: "right", from: "bottom" }, spacing: 5 } ); //$("#modal-container-h").modal('show'); //console.log(data.Message); } }, error: function (jqXHR, textStatus, errorThrown) { $.notify({ message: "Vui lòng thử lại sau", title: "Thông báo: ", }, { type: 'danger', placement: { align: "right", from: "bottom" }, spacing: 5 } ); } }); return false; }