fadeout slow jquery code example
Example 1: fadein fadeout jquery
$('.btn-cart').click(function(e) {
e.preventDefault();
$('.cartlist').fadeIn().addClass('active');
});
$('.btn-cartlist-close').click(function() {
$('.cartlist').removeClass('active').fadeOut();
});
Example 2: jquery on click fade out element
$(document).ready(function(){
$("button").click(function(){
$("p").fadeOut();
});
});