I've done a couple of custom Google forms, where you plunk the <form>...</form>
into your own file. They submit just fine.
I cant figure out how to apply this to a multi-step or multi-page form. The only solution I can think of is to build it as a giant single form, and .show()
and .hide()
the necessary bits to make it appear as a multi-step. This is obviously far from ideal.
Does anyone have a real solution to this?
Here's the expanded explanation of the <form>...</form>
that I mentioned before:
<script type="text/javascript">var submitted=false;</script>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;" onload="if(submitted) {window.location='thanks.html';}"></iframe>
<form action="YOUR-GOOGLE-FORM-ACTION-URL" method="post" target="hidden_iframe" onsubmit="submitted=true;" class="custom eight columns" id="ss-form">
<label>
<input>...
<input type="submit" ....>
</form>