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!
Page 1 / 1
Find code in below post
https://www.qualtrics.com/community/discussion/249/how-can-i-hide-the-previous-and-next-buttons-on-my-survey
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();
});
Eventually I managed to do it with:
Qualtrics.SurveyEngine.addOnload(function ()
{
//disables the next button on the page
this.hidePreviousButton();
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.