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? | Community
Skip to main content
February 6, 2015
Question

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?

  • February 6, 2015
  • 2 replies
  • 1230 views
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?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

Kristen_Malkov1
Level 7
February 6, 2015
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
February 6, 2015
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();