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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T00:53:07+00:00 2026-06-11T00:53:07+00:00

I currently got this: var xnumLow = 3000; var xnumHigh = 4900; var ynumLow

  • 0

I currently got this:

var xnumLow = 3000;
var xnumHigh = 4900;

var ynumLow = 9969;
var ynumHigh = 13900;

var ts = Math.round((new Date()).getTime() / 1000);

for (y=ynumLow; y<ynumLow; y++)
{
    for(x=xnumLow; x<xnumHigh; x++)
    {
        $('#box').append(y + " - " + x);
    }
}

Now I would like it to append new whole y “row” every 10 seconds, so they all dont append all in once.

The y “row” is the outer for() loop

How can I do this?

I got:

var refreshId = setInterval(function(){ (...) }, 10000);

But I don’t know where to merge this with the above code, in order to work correct.

  • 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-06-11T00:53:09+00:00Added an answer on June 11, 2026 at 12:53 am
    (function () {
        var xnumLow = 3000,
            xnumHigh = 4900,
            ynumLow = 9969,
            ynumHigh = 13900,
            currentY = ynumLow,
            delay = 500,
            displayData = function () {        
                var out = [],
                x;            
                for (x=xnumLow; x<xnumHigh; x++) {
                    out.push( currentY + "-" + x );          
                }            
                console.log(out.join(","));  //do the append here      
                currentY++;            
                if (currentY<ynumHigh) {
                    window.setTimeout(displayData,delay);
                }        
            };
        displayData()
    })();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got this code currently: handleSubmit: function(e) { var to_bucket = this.$('.transaction_bucket').val(); // Move
I've currently got all of this mess at the top of my ViewModels which
Currently I'm trying to make a flowchart, this is the code I've got so
I've currently got a bash script that parses /var/log/mail.log to determine the last login
I've got a function which loads various models, and currently have this kind of
My script currently looks like this: <script type=text/javascript> function updateMe(){ var x = 0;
I have this command that I run every 24 hours currently. find /var/www/html/audio -daystart
I have got this regex pattern that works with my current apache log format:
ok i got this problem. i have this routes: (code bit change) File:/home/dotcloud/current/config/routes.js exports.routes
I got a string that contains the current date by using this : NSString

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.