Skip to content

Instantly share code, notes, and snippets.

@siteslave
Created January 10, 2014 08:57
Show Gist options
  • Select an option

  • Save siteslave/8348789 to your computer and use it in GitHub Desktop.

Select an option

Save siteslave/8348789 to your computer and use it in GitHub Desktop.
[ประกอบหนังสือ Bootstrap]
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default">
<input type="radio" name="options" id="opt1"> ชอบ
</label>
<label class="btn btn-default">
<input type="radio" name="options" id="opt2"> ไม่ชอบ
</label>
<label class="btn btn-default">
<input type="radio" name="options" id="opt3"> เฉยๆ
</label>
</div>
<button type="button" id="btn_vote" class="btn btn-primary">
Vote
</button>
<script>
$('#btn_vote').on('click', function(e) {
e.preventDefault();
var opt1 = $('#opt1').prop('checked') ? '1' : '0',
opt2 = $('#opt2').prop('checked') ? '1' : '0',
opt3 = $('#opt3').prop('checked') ? '1' : '0';
alert(
'ชอบ: ' + opt1 +
', ไม่ชอบ: ' + opt2 +
', เฉยๆ: ' + opt3
);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment