Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Typo... "from" != "form"Also, you may have mismatched braces:MktoForms2.loadForm("//app-sj07.marketo.com", "801-TVW-591", 456, function(form){ form.onSuccess(function(form){ _gaq.push('_trackEvent' , 'PDF' , 'Downloaded' , 'PDF On HOw To Turn HR into a P...
A multiple-selection select will submit as an array (if more than one selection): fieldname[]=aaa&fieldname[]=bbbor as a single string if only one selection: fieldname=cccAre you talking about the way the values are represented within Marketo? That's not the same as the submit.
You should use onSuccess:form.onSuccess(function(form){ _gaq.push( ... );});
I'm sure something can be done. Please post a link to your form.
@Max S I would not advise using a dumb event listener that may think any submit button click == successful submit.The only way to get a proper accounting of successful submits that pass validation and reach the Marketo servers is to use the supplied onSuccess event.
I posted the other week a completely destyled Forms 2.0 embedded form. Our web team is using such forms to mesh completely within our corporate style. You can do the same code for your forms.
@Chris Feel free to contact me if you want to chat more about it.
@Jeff S The Thank You page can go anywhere you want using the 'External URL' option. Also, the Forms 2.0 API allows you to redirect the user anywhere you want using the onSuccess handler. You can definitely preserve your business unit branding.
@Carolyn D In addition to @Max S's points, if this is a common need, you can include that supplementary link in emails to your partners with the special mktNoTok class as well as a parameter like @Max suggests like "&partner=
@Dan - Yeah, my bad, the numeric web page ID needs to be translated to a URL via Munchkin in order for that to be in a trigger. But I believe you can use the web page ID (like 16542) without Munchkin having touched the page.