You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- 174I agree with the answer, but to ask another, why not? Why does HTML not allow for nesting forms? To me, it appears to be a limitation that we would be better off without. There are many examples where using nested forms would be easier to program (i.e. using an upload photo form with a profile edit form).Ryan– Ryan2013-04-06 01:32:58 +00:00Commented Apr 6, 2013 at 1:32
- 41@Nilzor he's not asking whether or not it can't be done, he's asking WHY not. I agree; nesting forms is actually really useful. So if you have a one page app with tabs, each tab is its own form (so you can submit it to save progress), and they're all wrapped in a form, which you can submit to save everything. Makes sense to me.Rob Grant– Rob Grant2013-12-24 06:45:35 +00:00Commented Dec 24, 2013 at 6:45
- 8I agree with what others have said. This limitation seems arbitrary and harmful.aroth– aroth2014-07-07 06:43:31 +00:00Commented Jul 7, 2014 at 6:43
- 28So we need HTML 5.1 with nested forms.Hector– Hector2016-06-22 10:33:35 +00:00Commented Jun 22, 2016 at 10:33
- 11The problem with nested forms is the form architecture within HTML, where action within that form leads to a submit event. The question gets hair about what needs to be submitted. You may have several fields within a form, or several forms within a div, but it doesn't really make sense to have forms within a form. If content goes together, it's all one form; if content is submitted separately, it's really separate forms that don't need an outer form.Kyle Baker– Kyle Baker2017-04-10 23:18:44 +00:00Commented Apr 10, 2017 at 23:18
| Show 10 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. python-3.x), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-html