Answers for "disable button on click js"

27

javascript disable button

//disable the button
document.getElementById(BUTTON_ID).disabled = true;
//reable the button
document.getElementById(BUTTON_ID).removeAttribute('disabled');
Posted by: Guest on September-22-2020
7

javascript disable button

document.getElementById(BUTTON_ID).disabled = true;
Posted by: Guest on January-24-2020
1

how to disable onclick event in javascript

$("#id").on('click', function(){ //enables click event
    //do your thing here
});

$("#id").off('click'); //disables click event

// If you want to disable a div, use the following code:
$("#id").attr('disabled','disabled');
Posted by: Guest on July-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language