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

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

  • September 24, 2018
  • 3 replies
  • 6 views

Forum|alt.badge.img+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.

Best answer by Anonymous

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>
View original

3 replies

MohammedAli_Rajapkar
QPN Level 5 ●●●●●
Forum|alt.badge.img+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...

  • 0 replies
  • Answer
  • September 24, 2018
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>

christopeter
Level 2 ●●
Forum|alt.badge.img+1
  • Level 2 ●●
  • 57 replies
  • September 24, 2018
Hi @Tohs

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

Leave a Reply