Questions tagged [bootstrap-switch]

The bootstrap switch is a Twitter bootstrap plugin, that turns checkboxes and radio buttons into toggle switches.

Bootstrap switch is a twitter bootstrap plugin, that turns checkboxes and radio buttons into toggle switches. The use of bootstrap switch is straight forward bootstrap-like :

<input type="checkbox" name="my-checkbox" checked>
$("[name='my-checkbox']").bootstrapSwitch();

The bootstrap switch supports features such as toggle animation, different colors and text for different states (on, off, indeterminate), and events for detecting user input.

Site: http://bootstrapswitch.com/

Github: https://github.com/nostalgiaz/bootstrap-switch

122 questions
0
votes
1 answer

Disable SwitchInput blue glow in Shiny app

How to disable the blue glow that appears over a switchInput element?
0
votes
2 answers

How to implement Bootstrap switch for rails form

I have a field in form like this: = f.check_box :feedback_required, label: "Feedback required?" Now instead of a checkbox, I want a switch with the label "Feedback required?" How do I implement this switch in my form:
0
votes
1 answer

Why does my bootstrap-switch does not work?

I have this code : jQuery.each($('.onoffswitch-checkbox'), function(i, slotData) { console.log($(slotData).bootstrapSwitch('state')) })