Debounce on scroll

let debounce_timer; window.onscroll = function(){ if(debounce_timer) { window.clearTimeout(debounce_timer); } debounce_timer = window.setTimeout(function() { // run your actual function here }, 100); }

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.