Answers for "how to disable a div using bootstrap"

2

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 "how to disable a div using bootstrap"

Browse Popular Code Answers by Language