On Scroll Stop event

(function() { var timer; window.addEventListener('scroll',function () { clearTimeout(timer); timer = setTimeout(refresh, 150); }); var refresh = function () { window.dispatchEvent(new CustomEvent('onScrollStop')); }; })();
Dispatch onScrollStop event when user stops scrolling.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.