I have the following fields:
When Engineering Review is on, the Revised Revision field needs to be applied to the Revision field (and stick):
$(document).ready(function(){
//Set revised value for Revision field
if ($('#Field167-0').is(':checked')) //If engReviewComplete radio box is on
{
$('.revision input').val($('.revisedRevision input').val()).change(); //Set Revision field to revisedRevision value
}
}); //close document.ready
But it's not! When this task goes to the next person, it still shows as Rev. 00 when it should show as Rev. 01. What am I doing wrong?