I originally created a web app in HTML, CSS and JavaScript, then was asked to create it again in Bootstrap too. I\'ve done it all fine, but I had toggle buttons in the web app t
Bootstrap 3 has options to create toggle buttons based on checkboxes or radio buttons: http://getbootstrap.com/javascript/#buttons
Checkboxes
Option 1 (pre-checked) Option 2 Option 3
Radio buttons
Option 1 (preselected) Option 2 Option 3
For these to work you must initialize .btns with Bootstrap's Javascript:
.btn
$('.btn').button();