Answers for "button onclick disable button"

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

On click, disable button

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

javascript disable button

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

disable onclick

pointer-events: none;
cursor: default;
Posted by: Guest on July-23-2020

Code answers related to "button onclick disable button"

Code answers related to "Javascript"

Browse Popular Code Answers by Language