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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T11:38:41+00:00 2026-05-12T11:38:41+00:00

I have a simple jQuery code that runs on a web page that has

  • 0

I have a simple jQuery code that runs on a web page that has more than 50,000 lists of people. On IE I get the message that a script is taking too long. I would like to get rid of that annoying popup in IE.

If I need to add 50,000 DOM elements then I could use timer to defer work in chunks. I am not sure if timer would be of any help in this case when I am selecting from the large chunk of data.

my jquery code is

$('#all_member').click(function(){
    $("#people_form input:checkbox").attr('checked', true);
    return false;
});
  • 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-12T11:38:41+00:00Added an answer on May 12, 2026 at 11:38 am
    1. Like everyone said, you probably don’t need 50,000 checkboxes on the same page
    2. If you want to work with chunks, specify the chunk in the selector:
    $('#people_form input:checkbox:gt(chunk_start):lt(chunk_size)')
    

    A more complete example (you still need to use setTimeout to avoid the popup):

    var CHUNK_SIZE = 4000;
    var TOTAL = 50000;
    for (var i = 0; i < TOTAL; i += CHUNK_SIZE) {
      var chunk_suffix = ':gt(' + i + '):lt(' + CHUNK_SIZE + ')';
      $('#people_form input:checkbox' + chunk_suffix).attr('checked', true');
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Very simple question: suppose I have the following js/jquery code doSomething(); $.get(url, callback); doSomethingElse();
Let's assume that we have simple jQuery code like the following: var $document =
I have a simple html page containing a large table with more than 2000
I have a jquery mobile website that has simple select. I have successfully tested
I have a simple html page with a div. I am using jQuery to
I have a jquery code that shakes a div when clicked. $(#error).click(function() { $(#box-login).show('shake',
I have a simple jquery loop that goes through my form and sees if
I have a simple jQuery function that resizes text areas, and I want it
I have a simple db.Model , that has one of the fields db.ListProperty(users.User) For
I have a simple page that loads a random image from an array and

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.