html button disabled attribute code example
Example 1: html button disabled
<button type="button" disabled>This button is disabled</button>
Example 2: enable html button
$('#Button').prop('disabled', true);
Example 3: button disabled
.disabled {
opacity: 0.6;
cursor: not-allowed;
}