Solved
saving data into qualtrics
Hello Everyone,
I have a timer 10 seconds to fill only one feedback question about his/her experience on the interaction with the random person. data is only recorded in Qualtrics only when the user hits the submit button but data is not recording when the user didn't press submit button with in the time period of ten seconds. i wanted to make use of data and want to record the data in Qualtrics even if the user misses the submit button option in ten seconds. does anyone know how to do that with javascript?
Best answer by AnthonyR
This is the JavaScript necessary
Qualtrics.SurveyEngine.addOnReady(function()
{
var that = this;
var allowedTime = 10 //Set this to the time allowed on page
setTimeout(function(){
console.log('Now!!');
that.clickNextButton();
}, allowedTime * 1000 );
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

F