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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T09:44:43+00:00 2026-06-07T09:44:43+00:00

I have two checkboxes with different names: <input type=checkbox name=checkbox1 value=checkbox1> <input type=checkbox name=checkbox2

  • 0

I have two checkboxes with different names:

<input type="checkbox" name="checkbox1" value="checkbox1">
<input type="checkbox" name="checkbox2" value="checkbox2">

I’d like to implement code where when checkbox1 is checked, checkbox2 is disabled and when checkbox2 is checked, checkbox1 is disabled. When it’s unchecked, it should enable the other back as well.

How can I achieve with jQuery or JavaScript?

  • 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-07T09:44:45+00:00Added an answer on June 7, 2026 at 9:44 am

    Firstly, I’m assuming the work you want to do cannot be done via Radio Buttons because that’s the obvious choice here. In case it can, here’s a few links for that:
    http://wiki.answers.com/Q/What_are_the_differences_between_radio_buttons_and_checkboxes
    http://www.w3schools.com/html/tryit.asp?filename=tryhtml_radio

    Checkbox 1: <input id="checkbox1" type="checkbox" onchange="onCheckboxChanged();"/>
    Checkbox 2: <input id="checkbox2" type="checkbox" onchange="onCheckboxChanged();"/>
    <script type="text/javascript">
        //Initialize checkboxes
        onCheckboxChanged();
    </script>
    

    Js:

    var onCheckboxChanged = function(checkbox){
        var checkbox1 = document.getElementById('checkbox1');
        var checkbox2 = document.getElementById('checkbox2');
    
        if(checkbox1.checked){
            checkbox2.disabled = true;
        }
        else {
            checkbox2.disabled = false;
        }
    
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following HTML with two elements having the same name <input type=hidden name=
I have a two checkboxes on different pages. I am sending the value from
I have a form like this: <form action='' onsubmit='void(0)' class=mainform> <label class=form3><input type=checkbox> One
I have two checkboxes generated like this: <table> <?php foreach ($invited_members as $mem) :
I have two checkboxes (Recommended and Others) which have peoples names (concatenated, i.e. John
Here is my code, I have two checkboxes and want to keep one disabled
I have the following two code blocks. Code block 1 var checkboxes = $(div.c1
We have checkboxes in two columns (they denote the same category, but different subscription)
I have two checkboxes. I need to check that at least one of them
I have two CheckBoxes and a TextBox. I want to TextBox to have IsEnabled=False

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.