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.
Don’t use ${formal} references inside directives, use $simple
Don’t use the == operator, use .equals (== causes hard-to-debug errors)
Don’t use literal $ to print a dollar sign, u...
A program token would only work on a Marketo LP. Obviously yes, you could output a {{my.token}} into the LP.
A query param would work as well, or a segment of the URL path (/some/...
It's very simple to check a checkbox based on some other facet of the page.
MktoForms2.whenReady(function(readyForm){
readyForm.setValues({
SomeField: "some value"
});
});
...
? The very first code snippet is how you populate the field.
Like all custom form behaviors, put the code in a <script> after the form embed. On a Marketo LP, this means just befo...