Hide Back Button Help | XM Community
Skip to main content
Solved

Hide Back Button Help

  • November 23, 2023
  • 1 reply
  • 232 views

Forum|alt.badge.img+5

Hi Everyone

I am using this code to hide a specific questions back button.

Qualtrics.SurveyEngine.addOnReady(function()
{
	$('PreviousButton').hide();

This is working fine, but when the user presses NEXT, it quickly appears as the question skips onto the next, any ideas?

Best answer by Deepak

@parkie_0007 
Include below HTML in the question>source you would like to hide back button.

<style>
.Skin #Buttons #PreviousButton {
    display: none;
}
</style>

Hope it helps!

View original

1 reply

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+44
  • 1553 replies
  • Answer
  • November 23, 2023

@parkie_0007 
Include below HTML in the question>source you would like to hide back button.

<style>
.Skin #Buttons #PreviousButton {
    display: none;
}
</style>

Hope it helps!


Leave a Reply