How to create Links that Open in a New Window?

  • witP2017
    Asked on October 30, 2017 at 2:57 PM

    How can I add a link in a text box that opens in a new window and not the same window as the form?

    Thanks so much for your assistance.

    -Jane

  • Nik_C
    Replied on October 30, 2017 at 3:16 PM

    You have to specify the target in HTML link:

    <p><a href="https://www.google.com" target="_blank">Link</a></p>

    Setting target to "_blank" will open the link in new tab.

    Also, make sure that the link in href part starts with https/http prefix.

    Let us know if you have any further questions.

    Thank you!