Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$('.checkbox').change(function(){ $('input[name="' + $(this).attr('name') +'"]').removeAttr('checked'); $(this).prop('checked', true); });
$('.checkbox').change(function(){ $('input[type="checkbox"]').removeAttr('checked'); $(this).prop('checked', true); });
$("input[type='checkbox']").attr("checked", true);