disable button click jquery code example

Example 1: jquery disable button

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

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

Example 2: jquery disable button

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

Example 3: 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);
    });
}

Example 4: disable click event jquery

$("#navigation ul li").unbind("click");

Example 5: enable disable click on div jquery

// To disable:    
document.getElementById('id').style.pointerEvents = 'none';
// To re-enable:
document.getElementById('id').style.pointerEvents = 'auto'; 
// Use '' if you want to allow CSS rules to set the value

Tags:

Misc Example