Answers for "disable the button onclick using jquery"

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 "disable the button onclick using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language