Answers for "jquery how to remove attr disabled button"

5

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 button remove disabled attribute

//for a class
$('.inputDisabled').prop("disabled", false);
//for a ID
$('#inputDisabled').prop("disabled", false);
Posted by: Guest on January-23-2021

Code answers related to "jquery how to remove attr disabled button"

Code answers related to "Javascript"

Browse Popular Code Answers by Language