// HTML: <element onscroll="myScript"> // JavaScript: object.addEventListener("scroll", myScript) // or object.onscroll = function() { /*...*/ }
window.onscroll = function (e) { // called when the window is scrolled. }