Hide Back Button Help | XM Community
Skip to main content

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?

@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