Thank you message after for submit then redirect after a few seconds | Adobe Higher Education
Skip to main content
Stefan_Gassner
Level 2
May 16, 2019
해결됨

Thank you message after for submit then redirect after a few seconds

  • May 16, 2019
  • 1 답변
  • 2396 조회

I am trying to get my form to redirect after I have showed the thank you message replacing the form on the same LP. 

I'm a novice when it comes to JS so would like some guidance. 

이 주제는 답변이 닫혔습니다.
최고의 답변: SanfordWhiteman
MktoForms2.whenReady(function(form){
var redirectTimeMs = 4000; // 4 seconds
form.onSuccess(function(vals,thankYouURL){
// whatever you were going to do to show the Thank You message goes here
setTimeout(function(){
document.location.href = thankYouURL;
}, redirectTimeMs);
return false;
});
});

1 답변

SanfordWhiteman
Level 10
May 16, 2019
MktoForms2.whenReady(function(form){
var redirectTimeMs = 4000; // 4 seconds
form.onSuccess(function(vals,thankYouURL){
// whatever you were going to do to show the Thank You message goes here
setTimeout(function(){
document.location.href = thankYouURL;
}, redirectTimeMs);
return false;
});
});