html button disabled

43

style disabled button -

button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}

html disable button -

<button disabled>Click me</button>

enable html button -

$('#Button').prop('disabled', true);

Comments

Submit
0 Comments