I have simple group of buttons which I need to reset:
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-defaul">
<input type="radio" name="flip" autocomplete="off" checked="checked"> Front
</label>
<label class="btn btn-default active">
<input type="radio" name="flip" autocomplete="off" checked="checked"> Back
</label>
</div>
I'm trying it like jQuery('.btn-group').button('reset')
but it not working.