Flagging first answer submissions

I am programming a set of 3 questions on the same page where respondents must answer option #2 for every question before being allowed to proceed.

I used the following after JS to prevent respondents from proceeding past questions B3a, B3b, B3c unless they select the right answers.

if(SSI_GetValue("B3A")!==2 ){

strErrorMessage = "Incorrect answer, please try again.";

}

However, I would like to create a flag that tells me how many answers were correct on the first submission. Any ideas on this?

3 replies