April 2025posted on 04.18.2025JavaScript: scrollend event The new scrollend event fires when scrolling has ended. addEventListener("scrollend", (event) => {}); onscrollend = (event) => {}; Previously before this event, there was no straightforward way to detect when scrolling has ended. We would have had to use the onscroll and a timer to detect if scrolling has ended. Read the full write-up on developer.chrome.com.No reactions yet
JavaScript: scrollend event
The new scrollend event fires when scrolling has ended.
Previously before this event, there was no straightforward way to detect when scrolling has ended. We would have had to use the
onscrolland a timer to detect if scrolling has ended.Read the full write-up on developer.chrome.com.