Hi
I'm adding a header that uses the email entered in the authenticator page as an identifier (as header which looks like: "This survey is taken by...., any other users please click here") .
Currently my header appears on every page, even on the page of the authenticator (the first page). Is there a way to not show the header there? I saw some similar thread at https://www.qualtrics.com/community/discussion/comment/6229#Comment_6229
but in my case I cann't edit the "hidden" page because it is the authenticator one.
Thanks!
Page 1 / 1
Add the following JavaScript to your Authenticator prompt text message (if you don't have an Authenticator prompt text message, add one to your library):
```
<script>
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#HeaderContainer").hide();
});
</script>
```
```
<script>
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#HeaderContainer").hide();
});
</script>
```
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.