How can I monitor response time in a section with four or five questions?
Time limit
Best answer by Harsh
Hi Peter,
If you are a developer and familiar with the “Typeform Embed SDK” you could embed the Typeform onto your own site via the “Typeform Embed SDK”
There is a specific event called “onQuestionChanged” which you could then programmatically listen to.
Basically whenever the user changes the question your callback function would be called.
In your callback function you could have a hashmap (key would be the question and value would be the last time the question was accessed)
Once the user presses the submit button the “onSubmit” event would be fired.
Have another callback function listen to the “onSubmit” event then.
In the callback function for the “onSubmit” event parse out the above created hashmap by comparing the difference between each successive question
i.e difference in time between question 1 and question 2 would give you the time spent on question 1
Once you have successfully computed the times you could post the results to your site’s backend (via Ajax) where you could easily access it.
I hope this all makes sense and you are able to get this working!
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.