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.
Solved
Can I remove the word "PREVIOUS" in the Survey Summary page, and only the word "NEXT/SUBMIT" appear?

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 originalPaste 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>
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.