Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$(document).ready(function() {
      $('#<%=ddlContinents.ClientID %>').change(function() { 
      var element = $(this);
      var totalLength = element.children().length; 
      if ($(this).disabled == false) { $(this).disabled = true; }
      });
});

What I am trying to do is fire off the change event of the dropdownlist and on change making this dropdownlist disabled. The code is firing and everything, but it does not disable the dropdownlist.

This portion of the code is not working:

if ($(this).disabled == false) { $(this).disabled = true; } });
share|improve this question
Thank you everybody, I got it with this way : $(document).ready(function() { $('#<%=ddlContinents.ClientID %>').change(function() { var element = $(this); var totalLength = element.children().length; if ($(this).attr("disabled") == false) { $(this).attr("disabled", true); } }); }); – Shiva Mar 12 '09 at 18:42
The "proper" way is to remove the disabled attribute and set disabled to 'disabled'. – Paolo Bergantino Mar 12 '09 at 18:44
docs.jquery.com/… – Paolo Bergantino Mar 12 '09 at 18:45

3 Answers

up vote 16 down vote accepted

Try this:

$(document).ready(function() {
  $('#<%=ddlContinents.ClientID %>').change(function() { 
   var element = $(this);
   var totalLength = element.children().length;
   if ($(this).attr("disabled") == false) { $(this).attr("disabled","disabled"); } 
  });
});
share|improve this answer
Thank you though, but did not work. – Shiva Mar 12 '09 at 18:38
oops, try $(this).attr("disabled") == false – baens Mar 12 '09 at 18:42
Thank you , that is way. – Shiva Mar 12 '09 at 18:50
if (!$(this).attr("disabled")) { $(this).attr("disabled","disabled"); }

If you want to enable it later on, you gotta do:

$(this).removeAttr("disabled");
share|improve this answer

I know this post is old..This might help if anyone stuck with disabling dropdown on dropdown chnage function

  if ($(this).attr('disabled', false)) 
         { $(this).attr('disabled', true);
    }  
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.