Peter Mekhaeil

JavaScript: 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.