I'm trying to make a radio and checkbox field required with jquery and when I do it makes the choices required. All I want is the label and to make the field required like normal. Code and screenshot attached.
$('#q14 input').change(function () {
if ($(this).val()=="New Employee") {
$('#q3 label').append('<span class="cf-required">*</span>');
$('#q3 input').attr('required', 'True');