Solved
Custom footer on different pages
Is it possible to hide some lines of text appearing in a survey footer for the first 3 pages of the survey only?
Best answer by TomG
@Nadaly,
Put the footer text you want to hide inside a `<div>` with an id:
```
<div id="hideThis">
Text to be hidden
</div>
```
Also, add a script to your footer that will hide the `<div>` if a flag is present on the page:
```
<script>
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#hideFooterText").length > 0) jQuery("#hideThis").hide();
});
</script>
```
Then, when you want to hide the footer text on the page, add this to the question text of one of the questions on the page:
```
<span id="hideFooterText"></span>
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.