“Se selecionar opção desativada jquerz” Respostas de código

Se selecionar opção desativada jquerz

if($('#dropdownID option:selected').prop('disabled') == true){
// Put your own condition
}
Zonic Design

opção jQuery não desativada

const opt = $('#select option:not(:disabled)'); // array with all options not disabled
const first = $($('#select option:not(:disabled)')[0]); // first option not disabled
Chris PA

Como desativar a opção após selecionar o uso do jQuery

//JS
$("#theSelect").change(function(){          
  var value = $("#theSelect option:selected").val();
  var theDiv = $(".is" + value);

  theDiv.slideDown().removeClass("hidden");
});


$("div a.remove").click(function () {     
  $(this).parent().slideUp(function() { $(this).addClass("hidden"); }); 
});

//HTML
<body>
<div class="selectContainer">
    <select id="theSelect">
        <option value="">- Select -</option>
        <option value="Patient">Patient</option>
        <option value="Physician">Physician</option>
        <option value="Nurse">Nurse</option>
    </select>
</div>
<div class="hidden isPatient">Patient <a href="#" class="remove" rel="Patient">remove</a></div>
<div class="hidden isPhysician">Physician <a href="#" class="remove" rel="Patient">remove</a></div>
<div class="hidden isNurse">Nurse <a href="#" class="remove" rel="Patient">remove</a></div>
</body>​
Graceful Gharial

Respostas semelhantes a “Se selecionar opção desativada jquerz”

Perguntas semelhantes a “Se selecionar opção desativada jquerz”

Mais respostas relacionadas para “Se selecionar opção desativada jquerz” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código