I'm trying to ensure that participants listen to an entire audio clip before they can proceed to the next question in my Qualtrics survey. Ideally, the "Next" button should remain hidden until the audio finishes
Qualtrics.SurveyEngine.addOnPageSubmit(function(){// Get the value of the numeric inputvaruserInput = jQuery(this.questionContainer).find("[type=text]").val();varnum_id =parseInt(userInput,10);if(num_id %2==0) {// If even, set a new emb...
The Best Feedback Form Templates for Your Website Building Mobile App Feedback Surveys with SDKs The State of Customer Experience (CX) Want to keep up to date? Stay in the loop by signing up for our email newsletter. Be the first to receive company news and product updates directly to ...
Online surveys were delivered using the Qualtrics survey tool. Two variants of the survey were created, one for students and one for professionals. The two surveys differed only in their initial questions, which collected basic demographic information and programming experiences to date. Subsequent ques...
Backend Development Using Limits to Scale Efficiently December 12, 2018 Backend Development Lessons learned from a large-scale data migration June 29, 2018 Backend Development Indexing Text for Both Effective Search and Accurate Analysis November 5, 2017 ...
When it comes to the questions, start with a restricted question and use branching to ask an open-ended question to contextualize your feedback. https://www.youtube.com/watch?v=_dTB9Aee5G0 Post Update Feedback Regular product updates are necessary to weed out issues and add new features ...
You can use JavaScript to set an embedded data field if the ‘Yes’ choice (choice id 1) is chosen: Qualtrics.SurveyEngine.addOnPageSubmit(function() { if(this.getSelectedChoices()[0]=="1") Qualtrics.SurveyEngine.setEmbeddedData("EndLoop","1");...
Qualtrics.SurveyEngine.addOnUnload(function() { /*Place your JavaScript here to run when the page is unloaded*/ }) And below is my current survey flow: I have also tried not setting a specific value for ppt_idin the survey flow, changing the ...