Is it possible to track click rates on hyperlinks contained with end of survey?
Click rate on End of Survey message hyperlink
Best answer by rochak_khandelwal
Hi
Instead of linking directly to the external destination, route users through an intermediate redirect page (you control this — could even be a lightweight HTML file hosted on your institution’s server or a Qualtrics Web Service). That page:
-
Logs the click (e.g., via Google Analytics, or even something simple like a Google Apps Script or server log)
-
Immediately redirects to the intended final URL
So your custom End of Survey message would include a link like:<a href="https://yoursite.com/track-redirect.html">Click here to view results</a>
On track-redirect.html, you’d have a tiny script like:
<script>
// Log the event (you could hit an analytics endpoint or webhook here)
fetch("https://your-logging-endpoint.com/log?click=finalPage");
// Redirect to final destination
window.location.href = "https://finaldestination.com";
</script>
In my view, this might work better than in-survey JS.
— Rochak
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
