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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:49:10+00:00 2026-05-11T22:49:10+00:00

I have a list of check boxes. For the check boxes that are selected,

  • 0

I have a list of check boxes. For the check boxes that are selected, I change it’s name before submitting. In FF the function works. In IE I get:

A script on this page is causing Internet Explorer to run slowly. If it
continues to run, your computer may
become unresponsive.

Do you want to abort the script? YES/NO

Not sure why this loop is causing problems in IE and not FF?

 function sub()
{
    
    var x=document.getElementsByName("user");
    for (i = 0; i < x.length; i++) //for all check boxes
    {
        if (x[i].checked == true)
        {
            x[i].name="id"; //change name of data so we know it is for an id
            //By renaming the first element of the list, we have reduced the length of the list by one 
            //and deleted the first element. This is why we need to keep i at it's current position after a name change.
            i=i-1;  
        }
        
    }//end for
    
    document.checks.submit();
    
}
  • 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-11T22:49:10+00:00Added an answer on May 11, 2026 at 10:49 pm

    This should work with a both a live and a non-live list.

    Personally, though, I’d try to find some way to output the original page so that the server can figure out which elements to use, instead of relying on javascript to do it.

     function sub()
    {
    
        var x=document.getElementsByName("user");
        var nodesToChangeIndex=0;
        var nodesToChange=new Array();
        for (i = 0; i < x.length; i++) //for all check boxes
        {
            if (x[i].checked == true)
            {
                    nodesToChange[nodesToChangeIndex++] = x[i];
            }
    
        }//end for
    
        for(i=0; i < nodesToChangeIndex; i++)
        {
            nodesToChange[i].name="id";
        }
        document.checks.submit();
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jsFiddle that shows text when certain check boxes are selected. If
I have this long list of checkboxes with specific labels that look something like
I have this long list of checkboxes with specific labels that look something like
I have a simple list view with some check boxes in an alert dialog.
I have a form with a list of people with check boxes next to
So I have a drop down list and a several check boxes. The drop
Okay, right now I have a form that contains this select list: <%=Html.LabelFor(x =>
I have a list of objects, each with a few fields, like this: function
I have a JavaScript function that goes through a list of checked checkboxes and
I have a list of 3 radio buttons with the 1st radio that's selected

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.