I have a field that will either set the radio button to Not Required or Complete depending on whether or not there was a person assigned to the QAE role.
$(document).ready(function(){
//Set value for QAE Review radio button
  if (($('.qae input').val() == "") || ($('.qae input').val() == "N/A"))
  {
  $('#Field192-0').attr('checked', false); //QAE is Not Required
  $('#Field192-1').attr('checked', true);
  $("#Field192-0").prop("disabled", true);
  $("#Field192-1").prop("disabled", true);
  }
  else
  {
  $('#Field192-0').attr('checked', true); //QAE is Complete
  $('#Field192-1').attr('checked', false);
  $("#Field192-0").prop("disabled", true);
  $("#Field192-1").prop("disabled", true);
  }
});  //close document.ready
It works great for the first form, however, the value is not set for the next form.
I do not have any javascript in the second form that would cause this to change. How can I get the radio button to populate to the next form?