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

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

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