Solved
How can I hide the previous and next buttons on my survey?
How can I hide the previous and next buttons on my survey?
Best answer by AnthonyR
If you would like to hide them on all pages:
Open your Look and Feel Menu
Selecting the "Advanced" tab
Click on the green "Add Custom CSS" button
Paste the following in to the box that appears:
#PreviousButton, #NextButton{
display: none;
}
If you would like to hide them on a specific page of your survey:
Add the following to the JavaScript editor for the first question on the page you would like to have them hidden for:
Qualtrics.SurveyEngine.addOnReady(function () {
$('NextButton').hide();
$('PreviousButton').hide();
});
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.