Can I remove the word "PREVIOUS" in the Survey Summary page, and only the word "NEXT/SUBMIT" appear? | XM Community
Solved

Can I remove the word "PREVIOUS" in the Survey Summary page, and only the word "NEXT/SUBMIT" appear?

  • 24 September 2018
  • 3 replies
  • 2 views

Badge +2
  • Level 2 ●●
  • 24 replies
Hi everyone,

Previously, I have added in the code below to change the word "Next" to "Submit" in the Survey Summary page.

Qualtrics.SurveyEngine.addOnReady(function() { if (jQuery("div").hasClass("ResponseSummary")){ jQuery("#NextButton").attr({value:"Submit",title:"Submit"});} });

Can I remove the word "PREVIOUS" in the Survey Summary page, where it will only have the word "Submit" appeared in the Survey Summary page?

Thank you and your advice are greatly appreciated.
icon

Best answer by Anonymous 24 September 2018, 13:01

View original

3 replies

Userlevel 7
Badge +20
Is it possible for you to share the QSF or survey URL? you can create a dummy survey and share the survey URL of that...
Hello @TohS ;

Paste the following code in the "Look and feel"->"Advanced" ->"Header"(edit)-> "Source"(<>)

<script>
Qualtrics.SurveyEngine.addOnReady(function()
{
if (jQuery("div").hasClass("ResponseSummary")){
jQuery("#NextButton").attr({value:"Submit",title:"Submit"});
jQuery("#PreviousButton").hide();}
});
</script>
Userlevel 3
Badge +1
Hi @Tohs

By clicking on block options on right, it can be changed too.

Leave a Reply