$('.btn-cart').click(function(e) { e.preventDefault(); $('.cartlist').fadeIn().addClass('active'); }); $('.btn-cartlist-close').click(function() { $('.cartlist').removeClass('active').fadeOut(); });