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

  • Home
  • SEARCH
  • 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 6721655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:21:19+00:00 2026-05-26T09:21:19+00:00

I am looking for the following functionality: The user is required to fill in

  • 0

I am looking for the following functionality:

The user is required to fill in either one of two fields to be able to submit.

One field is an Image Upload. The other field is a radio dropdown list. I want it set so that in order to submit the form, ONE of these options must be chosen but NOT both and BOTH cannot be blank.

How can do I possibly do this through jquery? Forgive me as I am relatively new to jquery and am still learning.

I was thinking along the lines of the validate function but any way to get my desired result would be nice.

  • 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-26T09:21:19+00:00Added an answer on May 26, 2026 at 9:21 am

    One good way to do this would be to give the user a choice by allowing him/her to click one of two buttons – you would then use JQuery to reveal/hide the right option based on the option they picked. This means only one option is visible at any time. This has these advantages:

    1. The user cannot as easily fill in both options (it’s less likely the user will get confused/frustrated if they do twice the work and the system rejects it).
    2. If the user doesn’t have JS the browser will just display both options with a notice (see my example).
    3. The Jquery is nice and simple and it won’t break as easily on IE/non-mainstream browsers.

    Here’s how I would do it (untested but should work).

    # view
    <button type="button" id="choose_image">Upload an image</button>
    <button type="button" id="choose_radio">Choose from list</button>
    <div id="noJS">
      Please only complete ONE of these two options.
    </div>
    <div id="image">
       ...
    </div>
    <div id="radio">
      ...
    </div>
    
    # Jquery
    $(document).onload( function(){
      $('#noJS').hide();
      $('#radio').hide();
    })
    $('#choose_image').click( function(){
      $('#radio').hide(); // or slideToggle() or fadeOut() etc.
      $('#image').show();
    });
    $('#choose_radio').click( function(){
      $('#radio').show();
      $('#image').hide();
    });
    

    In general, there are a few considerations here in whatever approach you choose:

    1. What is the clearest system for a user who might be new/rushing/not paying attention?
    2. What is least likely to cause frustration, especially by making a user do work that you later reject? (Solution: engineer it to naturally incur the result you want.)
    3. What is the most accessible to the most people in your target audience?
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking for the following functionality: The user is required to fill in
I need to create the following functionality, and looking for the best way to
At present I have two WPF listboxes imitating the following functionality (source: psu.edu )
I'm looking for a database that supports the following functionality: 1) Records in the
I'm looking for a visual studio plugin with the following functionality: On building the
I am looking for a way to accomplish the following: A user programs some
I'm looking at the following code snippet: my @ret = <someMethod> return (undef) if(
I was looking at the following code I came across for printing a string
I was looking at the following code in python: for ob in [ob for
I'm looking at the following API: http://wiki.github.com/soundcloud/api/oembed-api The example they give is Call: http://soundcloud.com/oembed?url=http%3A//soundcloud.com/forss/flickermood&format=json

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.