To redirect automatically the user to a URL in a new tab, you need to use our JavaScript block instead of the URL block.
Add a Javascript block and write this code in it.
window.open("https://yourwebsite.com/","_blank");
The "_blank" part makes your link appear in a new tab.
That's it!
Comments
0 comments
Please sign in to leave a comment.