Hello Team,
Currently, in our application forms, clicking on a link opens it in the same tab. This behavior causes the form to reset, requiring users to refill all the previously entered details. While we have advised users to manually open these links in a new tab as a workaround, we are looking for a more seamless solution to address this issue.
We have explored available options to enforce links to open in a new tab by default but have not been successful in implementing it. We would greatly appreciate your guidance on whether this functionality can be implemented and, if so, the steps required to achieve it.
In what format are you adding that link? If it is using <A> tags, or you can otherwise control the attributes of the link, then you can add a target="_blank" to it to make it open a new tab by default.
<a href="linktowebsite.com" target="_blank">Link</a>