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

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I agree with Olafur. I removed trim and replaced it… May 12, 2026 at 5:37 pm
  • Editorial Team
    Editorial Team added an answer I asked Hugh, the guy behind the hxcpp compiler part… May 12, 2026 at 5:37 pm
  • Editorial Team
    Editorial Team added an answer To fix the background color problem i just set builder.setInverseBackgroundForced(true);… May 12, 2026 at 5:37 pm

Related Questions

I'm having issues with internet Explorer. I have a link which duplicates a file
I am trying to currently embed a media player into certain web content and
I have a simple peice of jQuery code that submits a form and hides/shows
I have a simple jquery animation on a div, which is inside a div,

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.