On Mon, Jun 8, 2009 at 18:10, johnHoysa<johnho...@gmail.com> wrote:
>
> I have my form working great as long as my submit button is contained
> within the form tags. But the design calls for the submit button to be
> outside of the form. Any suggestions?

Don't get me wrong, but that is not logical at all. By design,
[submit] must be inside <form/>.

> <form>
> my form here
> </form>
> <div> </div>
> <div> Submit button </div>

Why not do
<form>
<div/>
<div>[submit]</div>
</form>
? What differs if you do this?

Try using basic Javascript, something like (fix and improve it of
course): <button onclick="document.forms[0].submit();">. Of course
you'll need to replace d.f.submit() with your working function to
ajax-submit the form if that's what you wish.

Reply via email to