Aem form submission to Marketo | Adobe Higher Education
Skip to main content
Level 3
September 12, 2022
解決済み

Aem form submission to Marketo

  • September 12, 2022
  • 1 の返信
  • 621 ビュー

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

このトピックへの返信は締め切られました。
ベストアンサー 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 の返信

Saravanan_Dharmaraj
Community Advisor
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;
});
});


});