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

  • Home
  • SEARCH
  • 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 9137085
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:02:55+00:00 2026-06-17T09:02:55+00:00

$(function() { max = 25; min = 1; var i = 0; do {

  • 0
$(function() {
    max = 25;
    min = 1;
    var i = 0;

    do {
        var match = Math.ceil(Math.random() * (max - min )- min);

        $('td').each(function() {
            i++;
            console.log( match );   
            if (i == match) {
                $(this).addClass('active');
            }       
        })
    } while ($('td.active').length == 10);
})

My problem is that I do not return 10 random boxes but only one.

  • 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-17T09:02:56+00:00Added an answer on June 17, 2026 at 9:02 am

    Change

    } while ( $('td.active').length == 10 );
    

    to

    } while ( $('td.active').length < 10 );
    

    while != until

    But if you have less than 10 td, you’ll loop indefinitely. And it will very often break as i always grows bigger.

    I think you want this :

    $(function() {
        var max = 25; // don't forget the "var", if you don't want to declare global variables
        var min = 1;
        do {
            var match = Math.ceil(Math.random() * (max - min )- min);
            $('td').eq(match).addClass('active');
         } while ($('td.active').length < 10);
    })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is my function: Random(int min, int max) { srand(time(NULL)); return (rand() % (max-min))
I have: function getRandomInt(min, max){ return Math.floor(Math.random() * (max - min + 1)) +
I want to use min(5,10) , or Math.max(4,7) . Are there functions to this
var randNum = function(){ var max = document.getElementById('max').value; var min = document.getElementById('min').value; var reps
I'm looking for a way to influence Math.random(). I have this function to generate
$(function() { $( .sli3 ).slider({ range: min, value: 50, min: 0, max: 100, slide:
I have a function with two input variables min.depth<-2 max.depth<-5 the function produces a
Is the time complexity of the Oracle MAX function O(1), O(log n) or O(n)
i want to pick highest value from an array so i use math.max function
I'm trying to create a javascript function that accepts 2 parameters min and max

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.