Eastern Connecticut State University Knowledgebase

Qualtrics- Remove Forward Arrow with CSS/JavaScript Code 

Article ID: 669
Last updated: 3 Jun, 2021

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();

});

This article was:  
Article ID: 669
Last updated: 3 Jun, 2021
Revision: 1
Access: Public
Views: 272