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.
Been awhile since I've used Java, but IIRC Java's proxy settings are sysprops. That is, you don't have to pass them to constructors or methods, you can set them globally. Seehttps:...
@Dylan Z A note I've dropped on similar threads: we're planning to turn our in-house reply tracking solution into a commercial offering in Q2 of this year. It'll do what you want, ...
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...