Answers for "disabling button in jquery"

9

How disable button jquery

$( "button" ).prop( "disabled", true );
Posted by: Guest on May-04-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 "disabling button in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language