When embedding a form, the code provided by Marketo has a flaw that makes it non working on Firefox in private mode. Eg:
<script src="//app-e.marketo.com/js/forms2/js/forms2.min.js"></script>
<form id="mktoForm_XXXX"></form>
<script>MktoForms2.loadForm("//app-e.marketo.com", "999-AAA-999", XXXX);</script>
The first script calls the form2.min.js library in the Marketo domain ("//app-e.marketo.com"), which is blocked by FF in private mode.
It should call the library in landing page subdomain instead, under the form of
<script src="//landing.page.subdomain/js/forms2/js/forms2.min.js"></script>
So that the embedded form also works on FF in private mode.
-Greg
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.