Answers for "add disabled attribute to "new option" jquery"

3

jquery remove disabled property from button

$('#edit').click(function(){ // click to
            $('.inputDisabled').attr('disabled',false); // removing disabled in this class
 });
Posted by: Guest on September-14-2020
1

jquery option not disabled

const opt = $('#select option:not(:disabled)'); // array with all options not disabled
const first = $($('#select option:not(:disabled)')[0]); // first option not disabled
Posted by: Guest on April-20-2021

Code answers related to "add disabled attribute to "new option" jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language