I have an end of survey block that redirects the users to a new URL. I would like that new url to open in a new tab. Is that possible?
As a workaround, I tried using the advice of a different post and insert JavaScript into an end of survey message, but the below script isn’t redirecting the user.
<script>
setTimeout(function() { window.open("https://www.wikipedia.org", "_blank");
}, 1000);
</script>