I'm a web, database, and network architect based in NYC, with specializations in the financial services, publishing, and SaaS sectors.
I build complex Marketo integrations for companies large and small... and can make Marketo forms and emails do things you never thought possible!
Check out my blog at https://blog.teknkl.com, which has Marketo-specific technical insights you won't see anywhere else, along with wider topics from my programming and systems work.
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 e...
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 f...
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': do...
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...
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 reg...
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 l...
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 re...