I would like to retrieve the current scroll position in Javascript, after some research I found this: window.scrollY and window.scollTop.
But the problem is that it does not work 100% on all browsers, is there something more reliable?
I would like to retrieve the current scroll position in Javascript, after some research I found this: window.scrollY and window.scollTop.
But the problem is that it does not work 100% on all browsers, is there something more reliable?
For cross-browser compatibility, use
window.pageYOffset
https://developer.mozilla.org/en-US/docs/Web/API/Window/pageYOffset