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!
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;
});
});