Form redirect notice in a pop-up | Community
Skip to main content
Level 2
January 25, 2022
Question

Form redirect notice in a pop-up

  • January 25, 2022
  • 1 reply
  • 1100 views

Hello, I am using a Marketo form, which redirects customers to an external URL once it has been filled out. I would like to add a pop-up window or a redirect notice page that informs customers that they are being redirected + some additional notes.

Can anyone offer any help with this - not sure if script would help?

Thank you!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

SanfordWhiteman
Level 10
January 25, 2022

Yes, you can do whatever you want in-between the successful submission and the redirect.

 

MktoForms2.whenReady(function(mktoForm){ mktoForm.onSuccess(function(submittedValues,thankYouURL){ // do whatever you want and eventually redirect to thankYouURL return false; }); });