Evaluating Multiple Sets of Radio Buttons With JavaScript
I have a form with 3 yes/no questions. I am using radio buttons (a, b, c). I need to trigger an event -- make a hidden text box visible -- only if the answer is 'yes' to all three questions.
I have this code but it doesn't work. Not sure what's wrong. Please help
event.target.hidden = !( (this.getField("a").value=="aYes") && (this.getField("b").value=="bYes") && (this.getField("c").value=="cYes"))
