Official comment
If you would like to have the ONTRAform pop up into a new tab, follow these steps:
- Choose the ONTRAform you'd like to pop as your thank you page:

- Insert a Custom HTML Block into your form you just designated and insert the code below:
<script>
function openInNewTab(the_url)
{ var win = window.open(the_url, '_blank'); win.focus(); }
openInNewTab("https://ontraport.com/");
</script>
- Replace `https://ontraport.com` with your designated URL in the code
You're done! This should enable you to pop open a new tab for your clients to see.
Note: If this doesn't work correctly for you, make sure that the quotation marks around your designated URL are still there.
Comment actions