Property |
Type |
Description |
|
$accept |
string |
Not supported in HTML5. Specifies the types of files that the server accepts (that can be submitted
through a file upload). Value: MIME_type |
|
$accept_charset |
string |
Specifies the character encodings that are to be used for the form submission. Value: character_set |
|
$action |
string |
Specifies where to send the form-data when a form is submitted. |
|
$autocomplete |
string |
New in HTML 5. Specifies whether a form should have autocomplete on or off. Values: on, off |
|
$enctype |
string |
Values: application/x-www-form-urlencoded, multipart/form-data, text/plain |
|
$method |
string |
Specifies the HTTP method to use when sending form-data. Values: get, post |
|
$name |
string |
Specifies the name of a form |
|
$novalidate |
string |
New in HTML 5. Specifies that the form should not be validated when submitted. Value: novalidate |
|
$target |
string |
Values: _blank, _self, _parent, _top |
|