Answers for "disabled property in html"

2

disable whole div bootstrap 4

$("#mydiv").addClass("disabledbutton");
.disabledbutton {
    pointer-events: none;
    opacity: 0.4;
}
Posted by: Guest on June-06-2020
2

disable input type button in html

<input type="button" disabled value="Submit">
Posted by: Guest on November-26-2020

Code answers related to "disabled property in html"

Browse Popular Code Answers by Language