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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:34:25+00:00 2026-05-21T07:34:25+00:00

Hellp, I am working on developing an online donation site for my page. I’d

  • 0

Hellp,

I am working on developing an online donation site for my page. I’d like the user to have a dropdown box with payment options ($5, $10, $20, Other). I’ve currently set it up to where it displays an input box if the “other” option is selected; if another option is selected ($5, $10, $20) then the input box is hidden. Furthermore, donations are taken via pay-pal and I’ve incorporated the Pay-Pal donate button/php into the site. I’ve run across the following issue: because the input box is the field that populates the amount that is being donated Pay-Pal does not recognize the dropdown amounts. For example, if I choose the “Other” option, enter $100 into the input box, then select the “$10” option from the dropdown box (let’s assume I changed my mind and wanted to donate $10 instead of $100), and click the donate button, Pay-Pal processes the payment for $100 not $10 (because it’s pulling from the input box).

I believe I have a fix, but I’m not necessarily sure how to code it. I am looking for help with the following: When a user selects an option from the dropdown box I would like this action to populate the (hidden) input box with the respective value. Similarly, if the user selects the “other” option from the dropdown, I’d like the input box (now visible) to be populated with “” as the user would populate this option him/her-self.

Again, I’m not certain how to code something like this, and I’m hopeful someone could point me in the right direction. I really sincerely appreciate any help, and I’m very gareful for your time. Thank you!

edit: Thank you for your help. Here is the code that I have as of right now:

    <select name="amount" id="otherFieldOption" class="dropdown">
                    <option value="20">$20</option>
            <option value="10">$10</option>
            <option value="5" selected="selected">$5</option>
            <option value="otherField">Other</option>   
    </select>

    <div id="otherField">
        Amount:
        <input type="text" id="amount" name="amount" class="textfield" size="10"/>
    </div>

the jquery code:

$(document).ready(function() {
  $.viewInput = {
    '0' : $([]),
    //THIS IS THE NAME OF THE DIV WRAPPING THE HIDDEN FIELD
    'otherField' : $('#otherField'),
  };

$('#otherFieldOption').change(function() {
    // HIDES THE INPUT FIELD IF ANOTHER DROPDOWN ITEM IS SELECTED ONCE THE HIDDEN FIELD IS LOADED
    $.each($.viewInput, function() { this.hide(); });
    // SHOWS THE INPUT FIELD ITEM IF SELECTED
    $.viewInput[$(this).val()].show();
  });

});
  • 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-21T07:34:26+00:00Added an answer on May 21, 2026 at 7:34 am

    here is a demo

    <select id="choice">
        <option value="10">10</option>
        <option value="20">20</option>
        <option value="50">50</option>
            <option value="other">other</option>
    </select>
    <input type='text' id="other" class="hidden" />
    

    and jquery to go with

    $('#choice').change(function(){
        var selected_item = $(this).val()
    
        if(selected_item == "other"){
            $('#other').val("").removeClass('hidden');
        }else{
            $('#other').val(selected_item).addClass('hidden');
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on developing a drupal site right now. I have created a
We're working on developing user widgets that our members can embed on their websites
OK, I am working on developing a USB device. I have created a custom
Help me ..my page index is not working in visual studio. my page load
I'm working with jQuery for the first time and need some help. I have
I've been developing a couple of C# tools recently, but primarily working with a
I am working on developing a pair of libraries to work with a REST
I'm working on developing a GUI for the recompilation of Linux kernel. For this
Currently i am working on developing one Warehouse solution from scratch, i am planning
I'm developing a page that pulls images from Flickr and Panoramio via jQuery's AJAX

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.