Could not hide back button | XM Community
Skip to main content
Hi I'm trying to hide the back button on specific pages - I added the following code: Qualtrics.SurveyEngine.addOnReady(function () { $('PreviousButton').hide(); }); To the first question of the page I wanted to hide - but the button is still there..... Any ideas why? I added it to the first question, whihc is a descriptive text question. Thanks!
Find code in below post https://www.qualtrics.com/community/discussion/249/how-can-i-hide-the-previous-and-next-buttons-on-my-survey
Thanks @bansalpeeyush29 Eventually I managed to do it with: Qualtrics.SurveyEngine.addOnload(function () { //disables the next button on the page this.hidePreviousButton(); });