Solved
Move previous/next buttons to top AND bottom of page
Hi all,
I would like to have previous/next buttons at the top AND bottom of the page.
I have found out how to place the navigation buttons to the top of the page (see previous post) by placing the following code in the header CSS
<script type="text/javascript">
Qualtrics.SurveyEngine.addOnReady(function()
{
$(''Header').insert($('Buttons'));
});
</script>
I tried to place them in the footer, by putting following code in the footer:
<script type="text/javascript">
Qualtrics.SurveyEngine.addOnReady(function()
{
$('Footer').insert($('Buttons'));
});
</script>
This then however removes the buttons from the header again....
Anyone who can crack this?
Best,
Kars
Best answer by Samarth
Hi @Kars ,
Please go ahead and add below code in header of your survey.
<script>
jQuery('#HeaderContainer').after(jQuery('#Buttons').clone());
</script>
Regards,
Samarth
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.