I've got the following structure:
<form id="the_form" method='post' enctype="multipart/form-data">
<table id="1">blabla</table>
<table id="2">blabla
<input type='submit' name='submit' />
</table>
</form>
<table id="3'>
<form>here are a couple of subforms</form>
</table>
Visually I would like to achieve this structure:
<form id="the_form" method='post' enctype="multipart/form-data">
<table id="1">blabla</table>
<table id="2">blabla
</table>
</form>
<table id="3>
<form>here are a couple of subforms</form>
<input type='submit' name='submit' />
</table>
I can't change the way the forms are structured. I tried to put the input in a noscript and then make a link that submits the form but I think this doesn't work due to the fact that the form is a multipart/form-data. So how do I solve this? Does anybody know a css way to place the table 2 under 3 (table 3 has a non-fixed height, seems messy to fix this with javascript so I hope somebody has a better solution)? Or is there a javascript/jquery way to do this? Or am I over-thinking this and is there a simple solution?
Cheers, Adnan