bootstrap button group disabled code example
Example 1: 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>
Example 2: bootstrap buttons Toggle states
Add data-toggle="button" to toggle a button’s active state. If you’re
pre-toggling a button, you must manually add the .active class and
aria-pressed="true" to the <button>.
<button type="button" class="btn btn-primary" data-toggle="button" aria-pressed="false">
Single toggle
</button>
Example 3: 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>