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
-1
votes
2 answers

bootstrap switch checked status always returns true

if ($("#Switch").is(":checked") == true) { alert("checked"); } else { alert(" Not checked"); } This code is giving me the alert "checked" first time after changing the switch state from OFF to ON. And after i am changing the state to OFF…
-1
votes
1 answer

ASP.NET Radio Button Switch in JQuery

I have a radio button in ASP.NET I want to use bootstrap-switch that i got from HERE I simply want to have the "Switching" effect on my radio buttons,…
Shezi
  • 1,352
  • 4
  • 27
  • 51
1 2 3
8
9