Hi there :)
I want to add a little down arrow on my website when users scroll down and an arrow pointing up when they scroll up.
The only thing I managed to do is this
$(document).ready(function(){
$(window).scroll(function () {
$("#bottomArrow").show();
setTimeout(function(){ $("#bottomArrow").fadeOut() }, 2000);
});
});
which does not recognize the up and down, just the "scroll".
How can I do this with jQuery ?
Thank you :)