Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 804335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:54:09+00:00 2026-05-14T23:54:09+00:00

Normally, I’d set the interval to a variable and then clear it like var

  • 0

Normally, I’d set the interval to a variable and then clear it like var the_int = setInterval(); clearInterval(the_int); but for my code to work I put it in an anonymous function:

function intervalTrigger() {
  setInterval(function() {
    if (timedCount >= markers.length) {
      timedCount = 0;
    }

    google.maps.event.trigger(markers[timedCount], "click");
    timedCount++;
  }, 5000);
};

intervalTrigger();

How do I clear this? I gave it a shot and tried var test = intervalTrigger(); clearInterval(test); to be sure, but that didn’t work.

Basically, I need this to stop triggering once my Google Map is clicked, e.g.

google.maps.event.addListener(map, "click", function() {
  //stop timer
});
  • 1 1 Answer
  • 5 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T23:54:10+00:00Added an answer on May 14, 2026 at 11:54 pm

    The setInterval method returns a handle that you can use to clear the interval. If you want the function to return it, you just return the result of the method call:

    function intervalTrigger() {
      return window.setInterval( function() {
        if (timedCount >= markers.length) {
           timedCount = 0;
        }
        google.maps.event.trigger(markers[timedCount], "click");
        timedCount++;
      }, 5000 );
    };
    var id = intervalTrigger();
    

    Then to clear the interval:

    window.clearInterval(id);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would normally set an instance variable in my controller, but I am unit
I normally set up my javascript code to have a function. But due to
I normally save new data to the database like this: $this->MyTable->set(array( 'id' => $id,
With AutoEventWireUp set to false, I would normally set a Page_Finalize like this: Include(Self.LoadComplete,
The baudrate is normally set to one of the specified values, like 9600, 56k
Do you normally set your compiler to optimize for maximum speed or smallest code
Normally when using Lucene you set a search query and Lucene gives you some
Normally with Java Swing you can set the background color of a button with:
Normally when I want to query large result set using Mysql I write this
Normally, when tabbing through controls on a form, when the focus is set to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.