Hide progress for a specific page | XM Community
Solved

Hide progress for a specific page

  • 26 April 2022
  • 1 reply
  • 73 views

Userlevel 2
Badge +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

icon

Best answer by Rudi 26 April 2022, 13:46

View original

1 reply

Userlevel 4
Badge +16

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

Leave a Reply