![]() |
The form element defines a form where users can interact through the controls inside of the form. The different controls are: input, select, textarea and button.
| Attribute | Description |
| action = uri | The action the form should execute when the form is submitted. |
| method = [get | post] | Wheter to use get or post method when submitting a form. Variables submitted with get method is shown in the URL. Variables submitted with post method is not. |
| enctype = contenttype | |
| accept-charset = charset list | |
| accept = content-type-list | |
| target = frame-target | The target frame |
| onsubmit = script | |
| onreset = script |
Comments