Hello!!
How can we make the progress bar work when the respondents answer the questions in a single page. In my case, the progress bar moves when I click the next page.
I am new to the tool, please help if this functionality is already present in the tool
Thanks in advance!!
Hi there, try adding the below to the Onload section of each question's JavaScript on your page:
var QID = this.questionId ;
jQuery("#" + QID + " input:not([type=image]").on("click", function() {
jQuery("div.ProgressBarFill").css("width", assignedprogress+"%");
});
When the question is clicked, the Progress Bar will update to whatever value you put in the "assignedprogress" piece of that code. Update the "assignedprogress" value for each question.
I used the "input:not([type=image]" so that it should work for most question types unless the respondent is clicking on image. Other selectors can be found below.
https://community.qualtrics.com/XMcommunity/discussion/5187/change-value-of-the-progress-bar
https://stackoverflow.com/questions/5982508/is-there-an-or-attribute-selector-like-inputtype-buttontext
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.