Solved
Is there a way to add text with hyperlink to the scoring results page?
Hi
I'm implementing a scorig mechanism in my survey, and wondered whether I can edit the scoring results page. I want to add there some sentences and a link, directing the participants to the material that would help them to answer better the next time they take the survey. Is there any way to edit this page? Thanks!
Best answer by Anonymous
Hello @yinbar ,
Paste the following code in the "look and feel" -> Advanced -> header(edit) -> Html view(<>):
<script>
Qualtrics.SurveyEngine.addOnReady(function()
{
if(jQuery(".TotalScore").length>0){
jQuery("#SkinContent").append('<p>Line one</p><p>Line Two</p><a src="https://www.qualtrics.com/community/">Link</a>');
}
});
</script>
Replace the line one, line two, link according to your need.
The above code will add lines after the scoring summary.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
