Answers for "disabled button"

13

jquery add disabled to button

$("#button").attr("disabled", true);
Posted by: Guest on July-06-2020
26

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
2

style disabled button

button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
Posted by: Guest on June-16-2020
9

html button disabled

<button type="button" disabled>This button is disabled</button>
Posted by: Guest on February-21-2020
7

javascript disable button

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

button disabled

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
Posted by: Guest on May-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language