Answers for "disable other options in select except the selected"

0

disable other options in select except the selected

$("#lbCountries").click(function () {
     $("#lbCountires option").each(function (index) {
        if ($(this).is(':selected')) {
            $(this).prop('disabled', false);
         }
         else {
            $(this).prop('disabled', true);
         }
      });
  });
Posted by: Guest on December-23-2020

Code answers related to "disable other options in select except the selected"

Code answers related to "Javascript"

Browse Popular Code Answers by Language