Answers for "how to disable the button of bootstrap"

0

bootstrap disabled button

<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary btn-lg" disabled>Button</button>
Posted by: Guest on September-24-2020
0

bootstrap buttons Disabled state

Make buttons look inactive by adding the disabled boolean attribute to any
<button> element.
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary btn-lg" disabled>Button</button>
Posted by: Guest on October-23-2020

Code answers related to "how to disable the button of bootstrap"

Browse Popular Code Answers by Language