Is it possible to add a progress bar for specific sections of a survey (e.g. progress bar for beginning of survey, progress bar for last part of survey separately) or does it have to be the entire experience?
Solved
Progress bar in certain areas
Best answer by TomG
Do you know how the piping or JavaScript options would work?
For piping, if you had an embedded data field ‘percent’ that contained the percentage, you would do this:
<progress id="pbar" style="width:100%" value="${e://Field/percent}" max="100">To set the value with JavaScript, you would do something like this:
var percent = 50;
jQuery("#pbar").val(percent);
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
