In the Summary page of the survey responses answered, can I change the word of "Next" to "Submit"? | XM Community
Skip to main content
Solved

In the Summary page of the survey responses answered, can I change the word of "Next" to "Submit"?

  • September 19, 2018
  • 8 replies
  • 85 views

Forum|alt.badge.img+2
Or does the word "Submit" will only appear in the Live Link? Please advise.

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"});} }); </script>

8 replies

BruceK
Level 2 ●●
Forum|alt.badge.img+11
  • Level 2 ●●
  • September 19, 2018
If you are trying to change the text on the Next button, and it is at the end of a block, click on the Block Options down arrow at the upper right corner of the block, and choose "Next/Previous Button Text". You can change the text on all of them in your survey via the "Look and Feel" options.

christopeter
Level 2 ●●
Forum|alt.badge.img+1
  • Level 2 ●●
  • September 19, 2018
Click on block options and change button next.

christopeter
Level 2 ●●
Forum|alt.badge.img+1
  • Level 2 ●●
  • September 19, 2018
If multiple question in block use below code in link https://www.qualtrics.com/community/discussion/426/change-next-forward-button-on-final-page-to-submit-finish-etc

MohammedAli_Rajapkar
QPN Level 5 ●●●●●
Forum|alt.badge.img+20
For a Multi-Language survey, you will have to create a message in message library and access it by clicking on the blue drop-down Here is the documentation on the message library: https://www.qualtrics.com/support/survey-platform/account-library/message-library/#MessageTypes

Forum|alt.badge.img+2
  • Author
  • Level 2 ●●
  • September 19, 2018
Hi everyone, thank you for your comments and suggestions. All of them are greatly appreciated. However, my current problem is in the Summary page instead of the questions in a block. The Summary page will consists of all the answered responses. This is where I need to change the word "Next" to "Submit". Hope it explains and I appreciates your feedback on this. Thank you.

  • Answer
  • September 19, 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"});} }); </script>

Forum|alt.badge.img+2
  • Author
  • Level 2 ●●
  • September 20, 2018
Hi @Shashi Thank you for your guidance and it works well now. Appreciates it.

Forum|alt.badge.img+2
  • Author
  • Level 2 ●●
  • September 21, 2018
Hi everyone, Previously, I have added in the code below to change the word "Next" to "Submit" in the Summary page as guided by Shashi. Qualtrics.SurveyEngine.addOnReady(function() { if (jQuery("div").hasClass("ResponseSummary")){ jQuery("#NextButton").attr({value:"Submit",title:"Submit"});} }); Can I remove the word "Next" in the Summary page, where it will only have the word "Submit" appeared in the Summary page? Thank you and I am looking forward for your advice.