Qualtrics- Remove Forward Arrow with CSS/JavaScript Code
The image below pertains to removing the arrow button from all questions using the CSS code.
The image below pertains to removing the arrow button from specific questions using the JavaScript code.
- Remove forward arrow per question CSS Code:
#PreviousButton, #NextButton{
display: none;
}
- Remove forward arrow for all questions JavaScript code:
Qualtrics.SurveyEngine.addOnReady(function () {
$('NextButton').hide();
$('PreviousButton').hide();
});