Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

169
Views
How to tell if element is currently actively scrolling

I'd like to stop certain things from happening while an element is being scrolled. Scrolling may start when the mouse wheel / mouse pad is used, but it may also happen from a scrollIntoView() being called. Is there a way to tell if an element is currently being scrolled directly from that element?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Here is a function that helps you to detect scrolling with debounce and you can start to invoke any function after a set timer.

let timeOut;
function debounce(delay) {
  console.log("It's rolling!");
  clearTimeout(timeOut);
  timeOut= setTimeout(function(){
    console.log("It's stopped!");
  }, delay);
}

document.querySelector("#scrollable").addEventListener('scroll',(function() {
  debounce(200);
}));
div {
  border: 1px solid black;
  width: 200px;
  height: 100px;
  overflow: scroll;
}
<div id="scrollable">In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.
<br><br>
'Whenever you feel like criticizing anyone,' he told me, just remember that all the people in this world haven't had the advantages that you've had.'</div>

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!