Answers for "jquery disable button after click"

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
2

disable click event jquery

$("#navigation ul li").unbind("click");
Posted by: Guest on March-17-2021
3

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
Posted by: Guest on April-11-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 "jquery disable button after click"

Code answers related to "Javascript"

Browse Popular Code Answers by Language