Aem form submission to Marketo | Community
Skip to main content
Level 3
September 12, 2022
Solved

Aem form submission to Marketo

  • September 12, 2022
  • 1 reply
  • 614 views

Hi All,

 

We have  created form in sightly and we want to submit the data to Marketo.

Please anyone could tell me the approach on background submission to Marketo.

 

Thanks,

Mahesh

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

you can capture the form submission button click in javascript and do the submission by code and show the success/thank you message in place of form. Below is an example.

 

$('.marketo-form').on('click', '.mktoButton', function(event) {
event.preventDefault();
MktoForms2.whenReady(function(form){
//code to check values in form fields
form.submit();
form.onSuccess(function(vals,thanksURL){
form.getFormElem().hide();
$(".marketo-form").hide();
$(".thank-you").show();
return false;
});
});


});

 

1 reply

Saravanan_Dharmaraj
Community Advisor
Saravanan_DharmarajCommunity AdvisorAccepted solution
Community Advisor
September 13, 2022

you can capture the form submission button click in javascript and do the submission by code and show the success/thank you message in place of form. Below is an example.

 

$('.marketo-form').on('click', '.mktoButton', function(event) {
event.preventDefault();
MktoForms2.whenReady(function(form){
//code to check values in form fields
form.submit();
form.onSuccess(function(vals,thanksURL){
form.getFormElem().hide();
$(".marketo-form").hide();
$(".thank-you").show();
return false;
});
});


});