disable a button using jquery code example
Example 1: jquery add disabled to button
$("#button").attr("disabled", true);
Example 2: How disable button jquery
$( "button" ).prop( "disabled", true );
Example 3: jquery disable button
function disable(i){
$("#rbutton_"+i).prop("disabled",true);
}
Example 4: 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);
});
}