Answers for "how to disable auto sort option in select box jquery"

2

disable option dropdown jquery

//disable by value
$("#ddlList option[value='jquery']").attr("disabled","disabled");

//disable by text
$('#ddlList option:contains("HTML")').attr("disabled","disabled");
Posted by: Guest on January-20-2021
0

how to disable time option in select jquery

$('#fromtime').on('change', function(){
    var totimeValues = [];
    
    var fromTime = $(this).val();

    $('#totime option').filter(function() {
        return $(this).val() <= fromTime;
    }).prop('disabled', true);

    
});
Posted by: Guest on November-19-2020

Code answers related to "how to disable auto sort option in select box jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language