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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:04:46+00:00 2026-05-24T04:04:46+00:00

How can i restrict a dropdown list option change without disabling that dropdownlist. Means

  • 0

How can i restrict a dropdown list option change without disabling that dropdownlist.
Means i can not change the option and that dropdownlist should not be readonly.
My problem is my server is not reading disabled elements

  • 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-24T04:04:47+00:00Added an answer on May 24, 2026 at 4:04 am

    Here’s my bid

    jQuery

    var lastSel = $('#foo').val();
    $('#foo').change(function(){
        var $select = $(this), $status = $('#status');
    
        var $selOpt = $select.find('option:selected');
        if (!$selOpt.hasClass('disabled')){
            lastSel = $selOpt.index();
            $status.text('Selection changed to ' + $selOpt.val() + ' [' + lastSel + ']');
        }else{
            $selOpt.removeAttr('selected');
            $select.find('option:eq('+lastSel+')').attr('selected',true);
            $status.text('Invalid selection, reverting to ' + lastSel);
        }
    });
    

    HTML

    <select id="foo">
        <option value="">Please select one</option>
        <option value="a">Option A</option>
        <option value="b">Option B</option>
        <option value="c" class="disabled">Option C</option>
        <option value="d">Option D</option>
        <option value="e">Option E</option>
        <option value="f" class="disabled">Option F</option>
        <option value="g">Option G</option>
        <option value="h">Option H</option>
        <option value="i" class="disabled">Option I</option>
    </select>
    <p id="status"></p>
    

    Plug-in Version

    (function($){
        $.fn.extend({
            restrictedSelect: function(disabledClass){
                disabledClass = disabledClass || 'disabled';
    
                return this.each(function(i,e){
                    var $s = $(e);
    
                    // store the current selection. This is also used as a fall-back
                    // value when the user selects something invalid.
                    $s.data('currentSelection',$s.find('option:selected').index());
    
                    $s.change(function(){
                        var $cs = $s.find('option:selected');
                        if ($cs.hasClass(disabledClass)){
                            $cs.removeAttr('selected');
                            $s.find('option:eq('+$s.data('currentSelection')+')').attr('selected',true);
                        }else{
                            $s.data('currentSelection',$cs.index());
                        }
                    });
                });
            }
        });
    })(jQuery);
    
    $('select').restrictedSelect('invalid-select-option');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We can restrict type of method parameters; for example, we should say that function
How can I restrict the list of drive letters displayed by the WPF SaveFileDialog?
How to restrict the maximum number of characters that can be entered into an
I have read somewhere that we can restrict the scope of global variable to
I'm trying to build a middleware that can restrict access based on conditions. I
Can somebody point me to a resource that explains how to go about having
Can you cast a List<int> to List<string> somehow? I know I could loop through
can you recommend some good ASP.NET tutorials or a good book? Should I jump
Can a LINQ enabled app run on a machine that only has the .NET
We can restrict the creation of object of a class by making its constructor

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.