$(".ico-del").on("click", function (e) {
if (confirm("Підтвердіть операцію видалення!")) {
e.preventDefault();
$(this).closest('.cart-tr').remove();
$.ajax({
type: "DELETE",
url: "/basket",
headers: {
"X-CSRF-TOKEN": $('meta[name="csrf-token"]').attr("content"),
},
data: {
vendorCode: $(this).data("vendor"),
},
success: function () {
alert("Deleted!");
},
error: function (jqXHR, exception) {
var msg = "";
if (jqXHR.status === 0) {
msg = "Not connect.\n Verify Network.";
} else if (jqXHR.status == 404) {
msg = "Requested page not found. [404]";
} else if (jqXHR.status == 500) {
msg = "Internal Server Error [500].";
} else if (exception === "parsererror") {
msg = "Requested JSON parse failed.";
} else if (exception === "timeout") {
msg = "Time out error.";
} else if (exception === "abort") {
msg = "Ajax request aborted.";
} else {
msg = "Uncaught Error.\n" + jqXHR.responseText;
}
//alert(msg);
},
});
}
});