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 107561
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:46:24+00:00 2026-05-11T01:46:24+00:00

I have multiple setTimeout functions like this: function bigtomedium(visiblespan) { visiblespan.removeClass(‘big’).addClass(‘medium’); setTimeout(function(){ mediumtosmall(visiblespan);},150); };

  • 0

I have multiple setTimeout functions like this:

    function bigtomedium(visiblespan) {         visiblespan.removeClass('big').addClass('medium');          setTimeout(function(){ mediumtosmall(visiblespan);},150);     };      function mediumtosmall(visiblespan) {         visiblespan.removeClass('medium').addClass('small');         setTimeout(function() { smalltomedium(visiblespan); },150);     };      function smalltomedium(visiblespan) {         visiblespan.removeClass('small').addClass('medium');         setTimeout(function() { mediumtobig(visiblespan); },150);     };      function mediumtobig(visiblespan) {         visiblespan.removeClass('medium').addClass('big');         setTimeout(function() { bigtomedium(visiblespan); },150);     }; 

Which is activated in jquery onclick:

    $('div.click').click(         function(event) {             var visiblespan = $('span:visible');             mediumtosmall(visiblespan);         }     ); 

What I need to do, is to get the click to hide invisible span as well.

    $('div.click').click(         function(event) {             var visiblespan = $('span:visible');                             var invisiblespan = $('span:not(:visible)');             mediumtosmall(visiblespan);             clearTimeout(invisiblespan);         }     ); 

What I’m not sure how to do is to write the clearTimeout function that will stop the loop. Any help is greatly appreciated. Thanks.

  • 1 1 Answer
  • 0 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. 2026-05-11T01:46:25+00:00Added an answer on May 11, 2026 at 1:46 am

    Not sure if you are already aware of this but, clearTimeout accepts a timeoutID that is previously returned from a call to setTimeout.

    Therefore you need to assign this timeout id to a variable that remains in scope for when you need to cancel it. Then pass it to the clearTimeout call when you need to stop the loop.

    As it is just an integer id, another option might be to create a custom attribute on a dom element using something like ‘domElement.setAttribute(‘timoutIDFirst’);’ (or attr in jQuery) and then just retrieve it using getAttribute when required.

    Considering you have multiple timers, using custom attributes on the DOM elements may help keep things tidier.

    EG:

          function mediumtosmall(visiblespan) {                 vt.removeClass('medium').addClass('small');                  // Store the timeoutID for this timer                 var storedTimeoutID=setTimeout(function() { smalltomedium(visiblespan); },150);                  $('span:visible').attr('timeoutID',storedTimeoutID);          }; 

    and then:

        $('div.click').click(             function(event) {                     var visiblespan = $('span:visible');         var invisiblespan = $('span:visible');                     mediumtosmall(visiblespan);                      var storedTimeoutID=invisibleSpan.attr('timeoutID');                     // Pass the ID to clearTimeout                     clearTimeout(storedTimeoutID);             }     ); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 121k
  • Answers 121k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It is possible in Python 3 since v3.1 and Python… May 12, 2026 at 12:33 am
  • Editorial Team
    Editorial Team added an answer Use jQuery. You can use a jQuery Event to detect… May 12, 2026 at 12:33 am
  • Editorial Team
    Editorial Team added an answer You can add a linked server with sp_addlinkedserver: EXEC sp_addlinkedserver… May 12, 2026 at 12:33 am

Related Questions

I have multiple setTimeout functions like this: function bigtomedium(visiblespan) { visiblespan.removeClass('big').addClass('medium'); setTimeout(function(){ mediumtosmall(visiblespan);},150); };
What is the most recommended/best way to stop multiple instances of a setTimeout function
Here's the background info first. ASP.NET 2.0 Web Site with AJAX Extensions 1.0. I
I make an AJAX request to a PHP script which returns a number from
I have multiple selects: <select id=one> <option value=1>one</option> <option value=2>two</option> <option value=3>three</option> </select> <select

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.