Rafael:
Can you tell me where to insert the js in the for so it can be auto submitted?
Mkto.formSubmit($jQ('#mktFrmSubmit').parents('form:first').get(0));
Thank You
Jerry Cooper
(310) 745-9942
Not sure about the Marked as Helpful, man... anyway, are you really using a Forms 1.0 form?
Sanford, I'm using Forms 2.0. I'm lost an where to insert the js or jq snipet.
Well, first of all, you can't use the Forms 1.0 script here -- and that's a good thing, because the Forms 2.0 API allows you to do this far more straightforwardly.
Can you lay out exactly what you're trying to do? You want to a form to submit automatically (and not render) based on what criteria?
Kenny
I have a landing page the sends the requestor to an external URL. I know I can do an HTML redirect with a simple script uploaded into the marketo file library. I prefer to route the requestor via a landing page so I can track analytics. All requestors will be cookied.
The form submit button says if "not redirected in 10 secods click here" I need to make good on the promise of automatic redirection either instantly or with a delay timer.
So, in the end I could use js or jq code to get the submit button to auto submit to accomplish the redirection.
Jerry Cooper
Here is the landing page now Sawtooth Demo Request
I would like it to auto-submit.
MktoForms2.whenReady(function(form){
setTimeout(form.submit,10000);
});