--- layout: page title: Buttons ---
Do more with buttons. Control button states or create groups of buttons for more components like toolbars.
Add data-loading-text="Loading..."
to use a loading state on a button.
Add data-toggle="button"
to activate toggling on a single button.
Add data-toggle="buttons"
to a group of checkboxes for checkbox style toggling on btn-group.
.active
For pre-checked options, you must add the .active
class to the input's label
yourself.
Add data-toggle="buttons"
to a group of radio inputs for radio style toggling on btn-group.
.active
For preselected options, you must add the .active
class to the input's label
yourself.
Enable buttons via JavaScript:
{% highlight js %} $('.btn').button() {% endhighlight %}Data attributes are integral to the button plugin. Check out the example code below for the various markup types.
None
Toggles push state. Gives the button the appearance that it has been activated.
You can enable auto toggling of a button by using the data-toggle
attribute.
Sets button state to loading - disables button and swaps text to loading text. Loading text should be defined on the button element using the data attribute data-loading-text
.
Firefox persists form control states across page loads. A workaround for this is to use autocomplete="off"
.
Resets button state - swaps text to original text.
Resets button state - swaps text to any data defined text state.
{% highlight html %} {% endhighlight %}