Answers for "disable button with cass"

CSS
4

style disabled button

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

On click, disable button

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

Browse Popular Code Answers by Language