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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:57:57+00:00 2026-06-03T07:57:57+00:00

I have a check box that will if checked send a gift as a

  • 0

I have a check box that will if checked send a gift as a monthly gift. If check box is unchecked the gift is a single gift.

What I have:

<div id="monthly-right">
    <input type="checkbox" name="level_autorepeat" id="level_autorepeat" value="false" /> Yes, automatically repeat this gift every year on this date.</div>
<div id="donation-length"></div>

What I need to display if checked:

<div id="monthly-right"><input type="checkbox" name="level_autorepeat" id="level_autorepeat" value="false" /> Yes, automatically repeat this gift every year on this date.</div>
<div id="donation-length">
    <input type=hidden name="sustaining.frequency" id="sustaining_frequency" value="monthly" />
    <input type="hidden" name="sustaining.duration" id="sustaining_duration" value="0" />
</div>

And back if unchecked

  • 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-03T07:57:58+00:00Added an answer on June 3, 2026 at 7:57 am

    I would do

    $('#check').click(function() {
        var type = $(this).is(':checked') ? "checkbox" : "radio";
        var input_r_or_c = $('<input />', {
            type: type,
            name: "level_autorepeat",
            id: "level_autorepeat",
            value: "false"
        });
        if ($(this).is(':checked')) {
            var input1 = $('<input />', {
                type: "hidden",
                name: "sustaining.frequency",
                id: "sustaining_frequency",
                value: "monthly"
            });
            var input2 = $('<input />', {
                type: "hidden",
                name: "sustaining.duration",
                id: "sustaining_duration",
                value: "0"
            });
            $('#donation-length').append(input1).append(input2);
        } else {
            $('#donation-length').empty();
        }
        $('#monthly-right input').replaceWith(input_r_or_c);
    });
    

    http://jsfiddle.net/vKLWA/1/

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

Sidebar

Related Questions

I have the following code. I want to make a check box that will
I have check box in the form with the following values: <input type=checkbox name=role
I have a check box, RequiredFieldValidator and textbox that have editmask extender I want
I have update panel that content check box, textbox, 3 DropDownList with CascadingDropDown extender.
I have this code that will check the top level checkbox if the checkboxes
I have an msi (authored with WIX) that has a check box bound to
The purpose is to have a checkbox, that if clicked, will send via post
I have some check box. I want that when I chek some check box
I have a loop that generates List of items with Check box to select
I have used checkbox column in gridview. I want to check status of that

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.