Skip to main content
December 8, 2015
问题

Stop Marketo Form Submission Refresh

  • December 8, 2015
  • 2回复
  • 3749查看

Is there currently a way to stop one of the Form 2.0 forms from refreshing the page while still successfully submitting this data using the embed code?

此主题已关闭回复。

2回复

December 8, 2015

Not out of the box.  By Default either refresh the page, send to another LP, send to another Web page

SanfordWhiteman
Level 10
December 8, 2015

MktoForms2.whenReady(function(form){

  form.onSuccess(function(vals,thanksURL){

    return false;

  });

});

This stops the refresh.

What else you want to do with the form element is up to you (remove it, replace it with text, etc.).