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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:50:42+00:00 2026-06-13T13:50:42+00:00

I have form markup like… <form id=’cart’ action=/cart/add method=post> <div id=product-variants> <div class=selector-wrapper clearfix>

  • 0

I have form markup like…

<form id='cart' action="/cart/add" method="post">
    <div id="product-variants">
        <div class="selector-wrapper clearfix">
        <select class="product-select" name='id[]'>
            <option value="">&nbsp;---</option>
            <option value="a">Option A</option>
            <option value="b">Option B</option>
            <option value="c">Option C</option>
        </select>
        <select class="product-select" name='id[]'>
            <option value="">&nbsp;---</option>
            <option value="a">Option A</option>
            <option value="b">Option B</option>
            <option value="c">Option C</option>
        </select>
        </div>
    </div>
</form>

I’m trying to write a routine that filters out (disables) any select inputs where the value is blank so it doesn’t get sent to the backend that I don’t have control. Here is what I came up with based on answers to other questions I found here.

jQuery(function(){
  jQuery("#cart").submit(function(){
    $(this).children(':input[value=""]').attr("disabled", "disabled");
    $(this).children('select option[value=""]').parent().attr("disabled","disabled");
    return true; // ensure form still submits
  });
});

The second line of the submit function is not working though. I’ve tried several combinations and can’t figure out how to achieve this. Could anyone enlighten me as to what I’m doing wrong?

  • 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-13T13:50:44+00:00Added an answer on June 13, 2026 at 1:50 pm

    You can try this

    $(this).find('select').filter(function() {
          return this.value === ''
     }).prop("disabled", true);
    

    OR

    $(this).find('select').each(function() {
         if (this.value == '') {
            $(this).prop("disabled", true);
         }
    });
    

    FULL CODE

    jQuery(function() {
        jQuery("#cart").submit(function(e) {
           // e.preventDefault();
            $(this).find('select').each(function() {
                if (this.value == '') {
                    $(this).prop("disabled", true);
                }
            });
        });
    
        jQuery("#cart").submit();
    });​
    

    Check Fiddle

    Another One

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

Sidebar

Related Questions

I have form like this: <form method=POST> <p> Nazwa kategorii: <br /> <input name=NazwaKat
Let's say I have markup like this: <form action=foo> <input name=bar /> <button type=button>Save</button>
I have a form in my aspx markup. I add to it some fields
I have form, where some fields are looks like rows, so I can add/delete
I have a form with markup like this.... Which voucher did you cut out
I've a form with three sections, markup looks something like this: div.section1 legend fieldset
I have a form and I would like to customise the markup for it.
In Wicket, I'd like to subclass TextField form component to add additional markup around
I have some markup like this: <form id=ddlSelections runat=server> <asp:ScriptManager ID=ScriptManager1 runat=server EnablePartialRendering=true />
I have some markup for a set of fields within a form: <ul> <li>

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.