hello! I'm using radio buttons of yes/no answer. the answer is time limited, I want to change the logic, that after clicking one of the radio buttons the screen changed to next question , and not after clicking the next button. I used the following code with no success:
this.questionclick = function(event,element){
//for a single answer multiple choice question, the element type will be radio
if (element.type == 'radio') {
var choiceNum = element.id.split('~')[2];
alert('You clicked on choice '+choiceNum); }
}
please help
on click function of radio button/multiple choice, change to next screen
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.