I am trying to use the Twitter Bootstrap button group as an actual set of form input controls. By default, these button groups can be made to function like a radio button or che
Bootstrap 2
Try this fiddle
HTML:
Left Middle Right
Script:
$(".btn-group button").click(function () { $("#buttonvalue").val($(this).text()); });
then get buttonvalue server side
buttonvalue