In Qualtrics Surveys, how can you save the response to an item into embedded data when the next button is clicked?

前端 未结 3 366
清酒与你
清酒与你 2020-12-17 04:40

I actually just spent a really long time figuring out answers to this question by piecing it together from the spotty documentation and a lot of web console inspection. Sinc

3条回答
  •  死守一世寂寞
    2020-12-17 05:04

    I was having problems that calling the below code in the $('NextButton').onclick method was forcing $('NextButton').onclick method to be called twice. Removing it worked for me so the onclick method gets called only once but still moves the survey forward.

    // and now run the event that the normal next button is supposed to do
    Qualtrics.SurveyEngine.navClick(event, 'NextButton')
    

提交回复
热议问题