I am planning on setting up multiple forms on a page and wanted to make sure that this is ok. Do submit buttons act only on the form they are inside of or do they apply to all the forms on a page?
|
|
A submit button submits a form. It seems that the specifications do not clearly say that this means the enclosing HTML5 drafts make this a bit clearer by introducing the concept of “form owner” of a field (such as a submit button). By default, the form owner is the enclosing |
|||
|
|
|
As far as I know (and I'm pretty sure), submit buttons/inputs will by default only act on it's parent form. You can read more about forms in the W3 specifications. So if you just wonder if it's ok to have multiple forms in your page, then yes, it is. |
||||
|
|