function hideCart() { $("#cart").removeClass('open'); } // Cart to shop $("#cart").on('mouseover', function() { $(this).addClass("open"); $(this).mouseout(function() { setTimeout( hideCart , 4000 ); }); });