JSFiddle - React, Tailwind, and code Playground
by Luuk
HTML
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div class="btn-group" data-toggle="buttons-radio">
<button type="button" class="btn btn-small step1">1</button>
<button type="button" class="btn btn-small step2">2</button>
<button type="button" class="btn btn-small step3">3</button>
</div>
JavaScript
$('body').on('click', '.btn.active', function(e){
e.stopImmediatePropagation();
$(this).removeClass('active');
})