Thanks!
Angela
The trick is getting the right survey link with the correct Q_PopulateResponse parameter for each answer option.
Any advice on what I need to edit in this?
For example: ${q://QID7/QuestionText
a href="${l://ChoiceLink/QID7/0}
Do I use the survey link in there? How should it look?
Appreciate any help you can give!
Qualtrics is going to replace those pipes with real text and links. So, send yourself a copy of the invite, then copy the html from the email you receive. That will show you exactly what you need in your email.
> @angelacirrone,
>
> Qualtrics is going to replace those pipes with real text and links. So, send yourself a copy of the invite, then copy the html from the email you receive. That will show you exactly what you need in your email.
>
Thanks Tom! Think simple... stupid was super relevant here. I was digging too deep!
TomG
Thanks for a super helpful advice. The links all work, however when I click on the answer option within my email I'm redirected to my survey in my browser and I still see the same question which was in the email. Is there a way to skip that question and move to the next one, so I don't answer the same question twice (once in the email and once in the browser)?
https://community.qualtrics.com/XMcommunity/discussion/comment/41458#Comment_41458You can add JS to the question to click the Next button if the question is already answered. If it is a single select multiple choice it would be something like:
Qualtrics.SurveyEngine.addOnReady(function() {
if(jQuery("#"+this.questionId+" input:checked").length > 0) this.clickNextButton();
});
Thanks, Tom. I tried to add the JS to the question, however it didn't skip to the question.
I tried putting your code in both "/*Place your JavaScript here to run when the page loads*/" and "/*Place your JavaScript here to run when the page is fully displayed*/" .
Any idea what I am doing wrong?
https://community.qualtrics.com/XMcommunity/discussion/comment/41469#Comment_41469The code should replace the entire Qualtrics.SurveyEngine.addOnReady function.
Awesome! It works. Thanks a lot, Tom!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.