First commit.

This commit is contained in:
kj
2020-08-02 00:27:43 -04:00
commit b1d8a63862
3399 changed files with 130628 additions and 0 deletions

View File

@ -0,0 +1,8 @@
formmethod [HTML5]
If the button is a submit button, this attribute specifies the HTTP method that the browser uses to submit the form. Possible values are:
post: The data from the form is included in the body of the form and is sent to the server.
get: The data from the form are appended to the form attribute URI, with a '?' as a separator, and the resulting URI is sent to the server. Use this method when the form has no side-effects and contains only ASCII characters.
If specified, this attribute overrides the method attribute of the button's form owner.