Answers for "disabled button with jquery"

13

jquery add disabled to button

$("#button").attr("disabled", true);
Posted by: Guest on July-06-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
5

jquery disable button

function disable(i){
    $("#rbutton_"+i).prop("disabled",true);
}
Posted by: Guest on December-27-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language