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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:51:31+00:00 2026-06-09T08:51:31+00:00

Is it possible to have to two checkboxes appear as blank on pageload. But

  • 0

Is it possible to have to two checkboxes appear as blank on pageload.
But if the user clicks an option, then they can never click off it – so at the moment the user can toggle between the options and you can only tick once. However if they press the ticked box twice it removes the tick.

HTML

My Billing Address is the same <input type="checkbox" class="sameCheck" name="toggleOracleAddress" id="toggleOracleAddress" value="SAME" /> <br /> <br />
My Billing Address is the different <input type="checkbox" class="sameDifferent" name="toggleOracleAddress" id="toggleOracleAddress" value="DIFFERENT" /> 

jQUERY

$(document).ready(function(){
    //////////////////
    //####     SAME ADDRESS
    //////////////////
    $('.sameCheck').click(function() {
        $('.sameDifferent').removeAttr('checked');
        $('#proceedIsOn').slideUp();
    });
    //////////////////
    //####     DIFFERENT ADDRESS
    //////////////////
    $('.sameDifferent').click(function() {
        $('.sameCheck').removeAttr('checked');
        $('#proceedIsOn').slideDown();    
    });
});

JSFIDDLE HERE http://jsfiddle.net/mRwMt/

  • 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-09T08:51:34+00:00Added an answer on June 9, 2026 at 8:51 am

    Just set it to checked on every click :

    $(document).ready(function(){
        $('.sameCheck').click(function() {
            this.checked = true;
            $('#proceedIsOn').slideUp();
        });
        $('.sameDifferent').click(function() {
            this.checked = true;
            $('#proceedIsOn').slideDown();    
        });
    });​
    

    FIDDLE

    or to avoid the sliding as well :

    $(document).ready(function(){
        $('.sameCheck').click(function() {
            if (!this.checked) return false;
            $('#proceedIsOn').slideUp();
        });
        $('.sameDifferent').click(function() {
            if (!this.checked) return false;
            $('#proceedIsOn').slideDown();    
        });
    });​
    

    Or to just toggle between boxes :

    $(document).ready(function(){
        $('.sameCheck').click(function() {
            if (this.checked) {
                $(this).siblings('input[type"text"]').prop('checked', false);
                $('#proceedIsOn').slideUp();
            }else{
                return false;
            }
        });
        $('.sameDifferent').click(function() {
            if (this.checked) {
                $(this).siblings('input[type"text"]').prop('checked', false);
                $('#proceedIsOn').slideDown();
            }else{
                return false;
            }
        });
    });​
    

    FIDDLE

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

Sidebar

Related Questions

Is it possible to have two methods with the same name but different parameters
Is it possible to have two legends with ggplot2 but based on different datasets
Is it possible have two projects with the same name in flex builder? Here
Is it possible to have two app.config files where one app.config serves as a
Is this possible to have two (or more) different kinds of cells to be
Is it possible to have two different foci/focuses on X windows?
On 32-bit WinXP -- Is it possible to have two COM ports directly connect
I have two possible widths for a string i want to display in a
I have found possible slowdown in my app so I would have two questions:
Possible duplicate : comparing-two-arrays I have two NSArray and I'd like to create a

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.