disabled property in html code example
Example 1: disable whole div bootstrap 4
$("#mydiv").addClass("disabledbutton");
.disabledbutton {
pointer-events: none;
opacity: 0.4;
}
Example 2: disable input type button in html
<input type="button" disabled value="Submit">