Answers for "css class that disable all child elements"

6

disable whole div bootstrap 4

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

Code answers related to "css class that disable all child elements"

Browse Popular Code Answers by Language