Solved
Change value of the progress bar
Is it possible to change the value of the built in progress bar with a simple javascript code?
The current %-values of my survey give a wrong impression about the length, so I'd like to assign my own values.
Best answer by TomG
Yes, if assignedProgress is a number representing the current progress:
```
jQuery("div.ProgressBarFill").css("width", assignedProgress+"%");
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.