Can I detect scrolling movement with JS or jQuery?
I'm trying to hide a div only when the user is scrolling, and when he stops scrolling the div shows.
I tried:
window.onscroll(function () {
$('.footerGeral').hide();
});
However it does not work.