Answers for "disable a button on click 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
1

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);
    });
}
Posted by: Guest on June-22-2020

Code answers related to "disable a button on click jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language