Answers for "how to delete disable of a button with jquery"

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
5

jquery disable button

$('.class').prop("disabled", true);
$('#id').prop("disabled", true);

// As function
const disable = (id) => $(`#${id}`).prop("disabled", true);
Posted by: Guest on August-14-2020

Code answers related to "how to delete disable of a button with jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language