Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 559 Bytes

js-scrollend-event.md

File metadata and controls

13 lines (8 loc) · 559 Bytes

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.