Hide Progress Bar for a single question | XM Community
Skip to main content
Solved

Hide Progress Bar for a single question

  • July 23, 2019
  • 1 reply
  • 145 views

Akdashboard
Level 4 ●●●●
Forum|alt.badge.img+6
I feel like this has already been asked, but I wasn't able to find anything. Does anyone know how to hide the progress bar for a single question? I have branch logic that screens out people based on the time they take the survey and it is a little odd to see the progress bar when this happens.

Best answer by TomG

``` Qualtrics.SurveyEngine.addOnload(function() { jQuery("#ProgressBar").hide(); }); ``` You should only have your single question on the page.

1 reply

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • Answer
  • July 23, 2019
``` Qualtrics.SurveyEngine.addOnload(function() { jQuery("#ProgressBar").hide(); }); ``` You should only have your single question on the page.