Hide progress for a specific page | XM Community
Skip to main content
Solved

Hide progress for a specific page

  • April 26, 2022
  • 1 reply
  • 119 views

Forum|alt.badge.img+1

Hi,
Would be grateful if you can help me with the following question.
How would we hide the progress bar for a specific page?
Many thanks

Best answer by Rudi

Hi Simin.

hide or better remove (hide doesn't really work on mobile devices) the progress bar container on this specific page per JavaScript
Try something like this
Qualtrics.SurveyEngine.addOnload(function()
{
let pbcon = document.getElementsByClassName('ProgressBarContainer')
pbcon[0].remove()
});


Best regards,

Rudi

1 reply

Rudi
QPN Level 3 ●●●
Forum|alt.badge.img+16
  • QPN Level 3 ●●●
  • Answer
  • April 26, 2022

Hi Simin.

hide or better remove (hide doesn't really work on mobile devices) the progress bar container on this specific page per JavaScript
Try something like this
Qualtrics.SurveyEngine.addOnload(function()
{
let pbcon = document.getElementsByClassName('ProgressBarContainer')
pbcon[0].remove()
});


Best regards,

Rudi