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

The Archive Base Latest Questions

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

I have simple page with multiple check boxes and radio buttons, This is only

  • 0

I have simple page with multiple check boxes and radio buttons, This is only validating the first system check box and skipping over the next comm check box. I’m fairly new to js and I’m sure this is a simple fix. Any assistance would be appreciated thanks!!!

    if (countSelected(formElement, 'checkbox', 'system[]') == 0) {
      alert('Please select System Access');
      return false;
    }

    if (countSelected(formElement, 'radio', 'department') == 0) {
      alert('Please choose a Department');
      return false;
    }

    if (countSelected(formElement, 'checkbox', 'comm[]') == 0) {
      alert('Please select Comm Access');
      return false;
    }

    return true;
  }

How can I get this to validate multiple check boxes? Will I also need to apply the same fix for multiple sets of radio buttons?

  • 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-13T00:53:56+00:00Added an answer on June 13, 2026 at 12:53 am

    I think the problem is that you’re returning from the function too soon. Try this:

    function test() {
        var valid = true;
    
        if (countSelected(formElement, 'checkbox', 'system[]') == 0) {
            alert('Please select System Access');
            valid = false;
        }
    
        if (countSelected(formElement, 'radio', 'department') == 0) {
            alert('Please choose a Department');
            valid = false;
        }
    
        if (countSelected(formElement, 'checkbox', 'comm[]') == 0) {
            alert('Please select Comm Access');
            valid = false;
        }
    
        return valid;
    }
    

    This way, it validates everything you want, alerts what you need, and returns the validity like you expect.

    Another option, which instead of alerting for each validation, you can do something like this:

    function test() {
        var valid = true;
        var messages = [];
    
        if (countSelected(formElement, 'checkbox', 'system[]') == 0) {
            messages.push('Please select System Access');
            valid = false;
        }
    
        if (countSelected(formElement, 'radio', 'department') == 0) {
            messages.push('Please choose a Department');
            valid = false;
        }
    
        if (countSelected(formElement, 'checkbox', 'comm[]') == 0) {
            messages.push('Please select Comm Access');
            valid = false;
        }
    
        if (messages.length > 0) {
            alert(messages.join("\n"));
        }
    
        return valid;
    }
    

    In this case, you get one alert at the end with all the errors. Might be nicer for the user.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this simple JSP page in Eclipse and the first line in the
I have simple HTML page with svg like this: <div id=plan> <svg xmlns=http://www.w3.org/2000/svg version=1.1>
I have a simple page. One Rich Text Box bound to a test table
I have a simple html page that only uses PHP in two places <?php
I have a simple test page in UTF-8 where text with letters in multiple
I'm implementing a simple web-page, in that page, I have multiple div objects, what
I have a simple page here to demonstrate the issue that I am seeing.
I have a simple page consisting of two forms. They cannot be displayed simultaneously
I have a simple page with images, and when the user clicks the image,
I have a simple page layout with two divs--one on top, and one on

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.