Hello,
I'm looking over our first sample data from our pilot survey, and I have a few questions regarding response times. We have a survey with many different pages, and a timing element on each page. The timing element tells us number of clicks, time to first click, time to last click, and time to submit. We also get an overall "survey time" variable on export. As it turns out, there is a large discrepancy sometimes between the sum of all the page time to submits and hte overall survey time. Can anyone explain why this might be, and also maybe exactly how each of these response times are calculated.
Thank you,
-Jeff
Solved
Response Times
Best answer by ahmedA
Sure, you can use this code to keep track of the duration:
Qualtrics.SurveyEngine.addOnReady(function () {
document.querySelectorAll("[id^=QID]:not(.Separator)").forEach((ques, index) => {
ques.style.display = "block";
});
let time_display = Date.now();
document.querySelector("#NextButton").onclick = function () {
Qualtrics.SurveyEngine.setEmbeddedData("time_submit", time_display - Date.now());
};
});
Leave a Reply
Rich Text Editor, editor1
Editor toolbars
Press ALT 0 for help
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.