jquery add disabled attribute to button code example

Example 1: jquery add disabled to button

$("#button").attr("disabled", true);

Example 2: jquery remove disabled property from button

$('#edit').click(function(){ // click to
            $('.inputDisabled').attr('disabled',false); // removing disabled in this class
 });

Example 3: jquery disable button

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

// As function
const disable = (id) => $(`#${id}`).prop("disabled", true);

Example 4: jquery disable button

function disable(i){
    $("#rbutton_"+i).prop("disabled",true);
}

Example 5: disable button click jquery

function load(recieving_id){
    $('#roommate_but').prop('disabled', true);
    $.get('include.inc.php?i=' + recieving_id, function(data) {
        $("#roommate_but").html(data);
    });
}