Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Look in the Activity Log for a test lead after following the link. That'll show you how the system identifies the clicked link and the hosting web page.
All JS enhancements to a form go inside the onReady/whenReady listener (that's the 4th argument to MktoForms2.loadForm or 1st arg to MktoForms2.whenReady). The former case is for embedded forms on non-Marketo pages (or on Marketo pages if you prefer embedding there for some reason), while the latter...
When you set up the form, you should have a hidden field that populates a field -- stored on the lead record -- from the appropriate query param, for example 'utm_source'. Hidden fields always have that option built-in.Then create a Smart List of people who've filled out the form you want, right-cl...
Couldn't be easier:form.onSuccess(function(vals,thankYouURL){ switch(document.location.pathname) { // or whatever you want to use to detect current page case '/mightyfine.html': document.location = '/thanks-mightyfine.html'; break; case '/redredwine.html': documen...
Lindsay, FYI, our upcoming FormsPlus library will allow prefill on non-Marketo pages. If you're interested in joining a Beta, contact me at https://purechat.me/sanford.P.S. I never bought the security concerns explanation. It's more likely that your external website is running SSL than your Mkto L...
I test Forms 2.0 forms in IE 8 all the time. What's an example URL where you're having problems?
Well, what do you think that payload format is? It isn't proper JSON because the values aren't quoted, and it certainly isn't proper WWW-Form-URL-Encoded (FUE). It looks like a regular JavaScript object. I don't recommend that transport format unless you know what you're doing and why.I would reco...
It's a myth that cookies get crossed with a referral form. You just have to know how to manage cookies and understand how Forms and Munchkin interact. Using a webhook should be a last resort -- not because of the webhook itself but because you're presumably using API calls from the webhook back into...
You can change everything. I actually have a far more advanced demo discussed and linked here.
Munchkin will track clicks on non-Marketo pages without modification. There are some links (such as document.location changes only in JS) that it can't hook automatically, but a regular will be fine.And whether the asset is in Marketo or not doesn't matter in this situation.