If i want to bind an event on page scrolling i can use scroll();.
scroll();
But how to fire when scroll() is ended up?
scroll()
I would like to reprod
You can verify if window.scrollY == 0
window.scrollY == 0
$(window).scroll(function(){ if (window.scrollY == 0) { //... } });
But this event will be fired at every scroll.