How can I monitor the scrolling of the page until the scrolling stops?

how can I monitor the scrolling of the page until scrolling stops

Mar.13,2021

do you think the third answer to this question can be answered?
link


function throttling

function throttle(method, context) {  
    clearTimeout(method.tId);  
    method.tId=setTimeout(function(){  
        method.call(context);  
    },500);  
}  
Menu