JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.1.0/bootstrap.min.js"></script>
<div class="btn-group" data-toggle="buttons-radio">
   <label class="btn"><input type="radio" name="option" value="1" checked="checked"> Option 1</label>
   <label class="btn"><input type="radio" name="option" value="2"> Option 2</label>
</div>

CSS

@import url('https://maxcdn.bootstrapcdn.com/twitter-bootstrap/2.1.0/css/bootstrap-combined.min.css');

JavaScript

$(function () {
        // Bootstrappable btn-group with checkables inside
        // - hide inputs and set bootstrap class
        $('.btn-group label.btn input[type=radio]')
          .hide()
          .filter(':checked').parent('.btn').addClass('active');
    });