I'm using bootstrap buttons, which look like regular buttons but they act like radio.
<div class="btn-group-horizontal" data-toggle="buttons" id ="Group">
<label class="btn btn-sm btn-info btnSelect active">
<input type="radio" name="options" id="Option 1" autocomplete="off" checked> Option 1
</label>
<label class="btn btn-sm btn-info btnSelect">
<input type="radio" name="options" id="Option 2" autocomplete="off"> Option 2
</label>
</div>
How can I get the ID / text of the active button?
Thanks!