My site has three columns. I have two fields within a form that need to be in the left column and 1 field of what is currently a different form that needs to be in the middle column. The thing is, I want them to behave as one form… (or be one form if that is possible).
When The form is submitted, the data from all the fields, needs to be passed to the action page.
What is the best way of achieving this? h
If you don’t have to support old browsers, you can use the
formattribute on some elements to make them behave like they are in the form.See http://www.impressivewebs.com/html5-form-attribute/
Else, the better way is to make the form element a parent of all fields. Just move the form element out of the first column.