Given the code below. How can I create each options button as part of the same button radio group?
<div class="row">
<div class="plan-option span3 well">
<h3 class="plan-option-title">Product Name</h3>
<div class="plan-pricing">
<p class="plan-price">$x<span class="small"> one-time</span></p>
<div class="signup-btn">
<button type="button" class="btn-large btn-block btn" >select</button>
</div>
</div>
</div>
<div class="plan-option span3 well">
<h3 class="plan-option-title">Product Name</h3>
<div class="plan-pricing">
<p class="plan-price">$x<span class="small"> one-time</span></p>
<div class="signup-btn">
<button type="button" class="btn-large btn-block btn" >select</button>
</div>
</div>
</div>
<div class="plan-option span3 well">
<h3 class="plan-option-title">Product Name</h3>
<div class="plan-pricing">
<p class="plan-price">$x<span class="small"> one-time</span></p>
<div class="signup-btn">
<button type="button" class="btn-large btn-block btn" >select</button>
</div>
</div>
</div>
<div class="plan-option span3 well">
<h3 class="plan-option-title">Product Name</h3>
<div class="plan-pricing">
<p class="plan-price">$x<span class="small"> one-time</span></p>
<div class="signup-btn">
<button type="button" class="btn-large btn-block btn" >select</button>
</div>
</div>
</div>
</div>
I have tried wrapping everything in a btn-group div but that does not work. I have also tried adding data-toggle="buttons-radio" to each button but that does not work.
The goal is to have a selector button for the plans where only one of the buttons is active. Does this have to be done with custom jquery or can this be done via the button groups and buttons-radio from twitter bootstrap?