- Posts: 73
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { var progressValue = 32; $('.progress-bar').css({ 'transition': 'width 0s ease 0s', 'width': progressValue+'%' }).attr('aria-valuenow', progressValue).text(progressValue+'%'); }); </script>
Thanks for pointing that out. Looks like i no longer need to answer topics around LS 2.5. Currently no option for me to switch from LTS.tpartner wrote: In version 2.5, the progress bars have been switched from jQuery to Bootstrap (for some reason?)
tpartner wrote: In version 2.5, the progress bars have been switched from jQuery to Bootstrap (for some reason?) so I think you will need to add something like this to the source of the group description or a question:
Code:<script type="text/javascript" charset="utf-8"> $(document).ready(function() { var progressValue = 32; $('.progress-bar').css({ 'transition': 'width 0s ease 0s', 'width': progressValue+'%' }).attr('aria-valuenow', progressValue).text(progressValue+'%'); }); </script>