HTML | <button> formmethod Attribute (original) (raw)
Last Updated : 20 Jul, 2022
The HTML button formmethod Attribute is used to specify the HTTP method used to send data while submitting the form. There are two kinds of HTTP methods, which are GET and POST. This Attribute is only used with the Button type="submit".
Syntax:
Attribute values:
- GET: In the GET method, after the submission of the form, the form values will be visible in the address bar of the new browser tab. It has a limited size of about 3000 characters. It is only useful for non-secure data not for sensitive information. It has a default value.
- POST: In the post method, after the submission of the form, the form values will not be visible in the address bar of the new browser tab as it was visible in the GET method. It appends form data inside the body of the HTTP request. It has no size limitation. This method does not support bookmark the result.
Example: This Example illustrate the use of formmethod Attribute in Button Element.
html `
Button Formmethod attributeGeeksforGeeks
HTML Button Formmethod Attribute
First name:Last name:
Address:
submit using GET
submit using POST
`
Output:
Supported Browsers: The browsers supported by HTML Formmethod attribute are listed below:
- Google Chrome 9.0
- Edge 12.0
- Internet Explorer 10.0
- Firefox 4.0
- Opera 15
- Safari