Show on scroll & hide on hold

After lots of failing attempts I solved it with this code:

$(window).scroll(function() {
$(‘element’).stop(true, true).show().fadeOut(1800);
});

1 Like