When a Form has been submitted and the "follow up with" is set to external url, can I make the url launch in a new window?

Anonymous
Not applicable

When a Form has been submitted and the "follow up with" is set to external url, can I make the url launch in a new window?

When a Form has been submitted and the "follow up with" is set to external url, can I make the url launch in a new window?
Tags (1)
2 REPLIES 2
Kristen_Malkov1
Level 8

Re: When a Form has been submitted and the "follow up with" is set to external url, can I make the url launch in a new window?

I don't believe so; I think that just takes them to the corresponding page that you enter. However, there may be a way to code that into your website/page or make a custom script? Anyone else know?
Justin_Cooperm2
Level 10

Re: When a Form has been submitted and the "follow up with" is set to external url, can I make the url launch in a new window?

Definitely possible. Just select "stay on same page" as the follow-up for the form. Then, look at example 4 here.

Use the onSubmit() function and all you need is one line of JS in that function:

window.open('http://www.google.com', '_blank').focus();