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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T21:31:08+00:00 2026-05-20T21:31:08+00:00

Closures are something I still don’t fully grasp in JS. I think this is

  • 0

Closures are something I still don’t fully grasp in JS. I think this is a closure issue. I’m trying to create a progress bar. Every x seconds I want to increment the width of a DIV. Here’s the part that is supposed to do that:

for(i=0;i<=counter;i++){
    setTimeout(function (){
        myDiv.style.width = wIncrement+"px"
        timeIncrement++;
        wIncrement++;
    },timeIncrement*1000);
}

What I want to happen is every x seconds, increase the size of the bar. If course, that’s not what’s happening.

I’m pretty sure (hope) that this is a closure issue, but the syntax to mix with a setTimout completely flummoxes me. Can anyone help me grasp the concepts needed to fix the closure issue in this example?

  • 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. Editorial Team
    Editorial Team
    2026-05-20T21:31:09+00:00Added an answer on May 20, 2026 at 9:31 pm

    The thing is that you’re incrementing a timeIncrement inside closure. So effectively you do not increment it at all until first timeout happens. Here is the changed code:

    for(i=0;i<=counter;i++){
        setTimeout(function (){
            myDiv.style.width = wIncrement+"px"
            wIncrement++;
        }, i*1000);
    }
    

    You still might have issues with wIncrement variable. Also I would use setInterval instead of setTimeout for this reason.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

is there a way to 'break' out of a groovy closure. maybe something like
I'm rusty with delegates and closures in JavaScript, and think I came across a
Possible Duplicate: What is a ‘Closure’? I read more and more about closures but
The Google Closure (GC) Javascript Library makes it very easy to create an AutoComplete
I got an unexpected closure when creating a nested class. I suspect that this
I was trying to understand the difference between closures and function pointers, and I
I think I have a problem with closures and execution contexts, although I'm not
I know you can achieve something as privateness in JavaScript by using closures and
Ok, so I had this neat little idea the other night to create a
Is there a way to do something like lexical closures using macrolet? What I

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.