Record user time to answer

Hi Paul,

You need to use Execute JavaScript action to record the time:

  1. Script in the slide On Load event to save the start time of the quiz:
    prez.myQuizStartTime = prez.elapsedTime();
  1. Script in each radio button On Check to calculate the user time to answer the quiz:
    prez.myQuizAnswerTime = prez.elapsedTime() - prez.myQuizStartTime;
  1. To include the answer time (prez.myQuizAnswerTime) to the report, you can see this topic: Custom Variables in Report

Regards