- With Twitter Bootstrap toggle radio buttons, what's the clean way to get form input?
- $(this).children('input[name="is_private"]').val()
- <input type="hidden" name="status" id="status" value="" />
- $('div.btn-group button').click(function(){
- $("#status").attr('value', $(this).attr('id'));
- })