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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T17:32:26+00:00 2026-05-31T17:32:26+00:00

I am trying to write a function that will: Disable the submit button when

  • 0

I am trying to write a function that will:

  • Disable the submit button when no option in a dropbox is selected (ie empty string is selected). Enable all dropboxes.
  • On user selection of an option in a dropbox (that is not the empty
    string), disable all other drop boxes and enable the submit button.

However, as a beginner at JavaScript I have no idea how I would begin this. How would I write such code?

So my simplified HTML would be as follows :

<form id="form" name="form" method="post" action="confirmation.cshtml">
   <select name="start_to_end_time" class="start_to_end_time">
      <option value="1">1</option>
      <option value="2">2</option>
   </select>

   <select name="start_to_end_time" class="start_to_end_time">
      <option value="3">3</option>
      <option value="4">4</option>
   </select>

   <button type="submit">Submit</button>

How can I write code that fulfills this function?

  • 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-31T17:32:27+00:00Added an answer on May 31, 2026 at 5:32 pm

    I think it’s not a good idea to give two HTML element the same name attribute unless you use brackets [] within it. The last one may overwrite the value of the first one.

    JavaScript using MooTools:

    $$('.start_to_end_time').each(function(element) {
        element.addEvent('click', function(ev) {
            $$('.start_to_end_time').each(function(selectbox) {
    
                    if (element.getProperty('value') != '') {
                        $('button').setProperty('disabled', '');
                        $$('.start_to_end_time').each(function(b) {
                            if (b != element) {
                                b.setProperty('disabled', 'disabled');
                            } else {
                                b.setProperty('disabled', '');
                            }
                        }
                    } else {
                        $('button').setProperty('disabled', 'disabled');
                        $$('.start_to_end_time').each(function(b) {
                            b.setProperty('disabled', '');
                        }
                    }
            });
        });
    });
    

    I didn’t test the code. You may define some methods to make it more readable.

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

Sidebar

Related Questions

I'm trying to write code that will disable submit button (or all submit buttons)
I'm trying to write a function that will return all the available cars for
I am trying to write a function that will trim all the letters off
Im trying to write a function that will convert all charactewrs after the first
I am trying to write a function that will pull the name of a
i am trying to write a function that will make DataRow[column] return nullable typed
I'm trying to write a function that will let me red-shift or blue-shift a
I am trying to write a function that will filter a list of tuples
I am trying to write a function that will randomly return an (x,y) co-ordinates
I am trying to write a function that will convert a generic list to

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.