Buttons Radio with Pre-selected Option - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Form Control

Description

Buttons Radio with Pre-selected Option

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
 <head> 
  <meta charset="utf-8"> 
  <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <title>Bootstrap 3 Buttons Radio with Pre-selected Option</title> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

 </head> <!--from w  ww .jav  a  2s  .  c o m-->
 <body> 
  <div> 
   <div class="btn-group" data-toggle="buttons"> 
    <label class="btn btn-primary active"> <input type="radio" name="options" id="option1"> Option 1 </label> 
    <label class="btn btn-primary"> <input type="radio" name="options" id="option2"> Option 2 </label> 
    <label class="btn btn-primary"> <input type="radio" name="options" id="option3"> Option 3 </label> 
   </div> 
  </div>   
 </body>
</html>

Related Tutorials