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

189
Views
Stop page refresh at specific time

I need to refresh simple page every 60second but i need to stop refreshing with specific time.

 window.setTimeout(function () {
  window.location.reload();
}, 60000);

note: that the time when page refreshing stop in 00:29 and start in 00:31 and like that ...

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

0

If you want to refresh EVERY 60 seconds, you should use setInterval() instead of setTimeout(), because setTimeout() only does it once. And for stopping it:

const myInterval = setInterval(() => {
    if (/*Your statement*/) {
        clearInterval(myInterval)
    }
    window.location.reload()
}, 60000)
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!