jQuery(document).ready(function () {
    setBtnBasket();
});

function setBtnBasket()
{
    jQuery('.btn--basket').bind('click', function (e) {
        e.preventDefault();

        jQuery.post('/ajax/basket/add.php', {
            id: jQuery(this).data('id'),
            count: jQuery(this).data('count')
        }, function () {
            $(this).parent('.card__bottom').css('display', 'none');
            $(this).parent('.card__bottom').siblings('.card__bottom--active').css('display', 'block');
            $(this).parent('.card__bottom').siblings('.slider').addClass('slider--active');
            let basketNum = $('.basket__num');
            basketNum.removeClass('hide');
        }, 'json');
    });
}