Answers for "how to disable button click"

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
0

css disable button click

button.disabled{
  pointer-events: none;
}
Posted by: Guest on January-21-2021
0

On click, disable button

$("#btnSubmit").attr("disabled", true);
Posted by: Guest on May-17-2021

Code answers related to "how to disable button click"

Code answers related to "Javascript"

Browse Popular Code Answers by Language