$(function() {
$('form').submit(function() {
if(!$(this).find('input:checked').length) {
alert('Выберите один из вариантов');
return false
}
}).find('input:checkbox').change(function() {
$(this).closest('.input-group-addon').find('input:text').prop('required', this.checked).attr('placeholder', this.checked ? 'Заполните' : '')
});
$.cookie('smartCookies', true, {
expires: 7,
path: '/'
});
});
|