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.
Of course.First, parse the value from the URL (query string) using JavaScript.
Then you can use any one of various techniques to change/add the logos:
Add a class to an element tha...
@David P You need to change http://app-xx01.marketo.com/...to use your instance URL (ours is app-sj01...).Also, I used the generic variable `form` because I didn't know how experie...
Use the onValidate handler as in theForms 2.0 API docs.
<script src="//app-sj01.marketo.com/js/forms2/js/forms2.min.js"></script>
<form id="mktoForm_96"></form>
<script>MktoForms2...
It's the most basic Javascript imaginable:
<script>
document.location.href = "http://pages.example.com/a_very_special.pdf";
</script>
However I know any code can makenon-coders ...
@ChristinaPappas if you want to manage access URLs for a static asset, set up a landing page that does a javascript redirect to the asset's URL. Then manage redirects at the LP lev...
@David H no JavaScript, no validation. Anyone running a NoScript extension or similar can submit the forms to the backend without the "requiired" fields because they aren't truly m...
@David P I see now that youareShindigz!That will make it quite easy to integrate fully on the client side, without any server work at all and no rate limit worries.What you want to...
@David P do you have access to add JS code to the Shindigz page? Do you get a copy of the Shindigz data via email or via their API? Please explain how you would plan to intercept/r...
@Kenny E While the rate-limiting may be easier to deal with using REST or SOAP, that's only if (1) one is able to schedule requestsasynchronously using the API call, but not with o...
I then wanted to just have little pop up window that has the thank you message instead of a full landing page that opens in a new tab.
Yeah, you can't do this because it implies t...