PDF Tabbing action with multiple choice radio button group
I am using this code for my 'yes' or 'no' radio button groups in a PDF form;
if (event.target.value == "Yes") {this.getField("FIELD1").setFocus();}
else if (event.target.value == "No") {this.getField("FIELD2").setFocus();}
}
But, I have a group of radio buttons with 6 choices and all the JavaScript I've tried either ignores the second get field when tabbing or auto-selects when I arrow down to the next option. I know there must be a simple way but nothing is working. Thanks in advance!
