Actually that is very helpful! The hidden questions are at the end of the survey so this is perfect.
Below is the working code (if anyone else has this problem):
Below is the working code (if anyone else has this problem):
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var QUESTIONS = 226;
var progressValue = Math.round(({QUESTION_NUMBER}/QUESTIONS)*100);
$('.progress-bar').css({
'transition': 'width 0s ease 0s',
'width': progressValue+'%'
}).attr('aria-valuenow', progressValue).text(progressValue+'%');
});
</script>