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

185
Views
Wick editor alert function with interval continuing after stopped

When running my wick editor project with a interval based timer system it will continue to call alerts even when the project has been paused. (This will not continue forever for me but will last a while) I'm curious if the is a bug with wick editor or something else. This is the code I used for the timer

    let inter = setInterval(interV,1000);
    function interV(){
        alert("This code will run every second.");
    }
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You should clear the interval Like this:

clearInterval(inter);

Or for executing onece, just use setTimeout:

setTimeout(interV, 1000);
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!