$('.quantity__modal .fa-balance-scale').on('click', function () {
let img, name, price, addContent, body_cart;
$(".cart_ttl").css({ "display": "none" });
img = $(this).parent(".i__background").parent(".product-btn").parent(".quantity__modal").parent('.modal__description').parent('.modal__product').children('.modal__slider').children('img').attr('src');
name = $(this).parent(".i__background").parent(".product-btn").parent(".quantity__modal").parent(".modal__description").children('.from-js').children('a').text();
price = $(this).parent(".i__background").parent(".product-btn").parent(".quantity__modal").parent('.modal__description').children('.from-js').children('.product__price').children('span').text();
addContent = '<div class="cart__item"><div class="cart__img"><a href="#"><img src="../' + img + '" alt=""></a></div><div class="cart__text"><a href="#"><h4>' + name + '</h4></a><p><span>' + price + '</span></p><a class="delete" href="#"><i class="far fa-trash-alt"></i></a></div></div>'
$(addContent).appendTo(".cart__list");
body_cart = $('.cart__menu').html();
$.ajax({
type: "POST",
url: '
http://wp1.j1104434.ndzjp.spectrum.myjino.ru/cart.php',
data: { content: body_cart }
}).done(function (msg) {
alert("Ваш товар успешно добавлен в корзину!");
});
deleteProduct();
get_result_price();
});