"Single Button Toggle"
Bootstrap 3.3.0 Snippet by stringsanbu

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <div class="container"> <h1 class="text-center">Toggle!</h1> </div> <div class="container"> <div class="well well-sm text-center"> <div class="" data-toggle="buttons"> <label class="btn btn-sm btn-primary"> <input type="radio" name="options" id="option2" autocomplete="off" class="option2"> <i class="fa fa-chevron-left"></i> L </label> <label class="btn btn-sm btn-success active"> <input type="radio" name="options" id="option1" autocomplete="off" checked class="option2"> R <i class="fa fa-chevron-right"></i> </label> </div> <br /> </div> </div> </div>
.btn.active { display: none; } .btn span:nth-of-type(1) { display: none; } .btn span:last-child { display: block; } .btn.active span:nth-of-type(1) { display: block; } .btn.active span:last-child { display: none; }

Related: See More


Questions / Comments: