Open In App

HTML | <button> formmethod Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

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:

<button type="submit" formmethod="get|post">

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




<!DOCTYPE html>
<html>
 
<head>
    <title>
      Button Formmethod attribute
    </title>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">
      GeeksforGeeks
    </h1>
    <h4>
      HTML Button Formmethod Attribute
    </h4>
    <form action="#" method="post"
          enctype="multipart/form-data">
        First name:
        <input type="text" name="fname">
        <br><br>
        Last name:
        <input type="text" name="lname">
        <br><br>
        Address:
        <input type="text" name="Address">
        <br><br>
        <button type="submit" formmethod="GET">
          submit using GET
        </button>
        <br>
        <br>
        <button type="submit" formenctype="text/plan"
                formmethod="POST">
          submit using POST
        </button>
    </form>
</body>
 
</html>


Output:

  

Supported Browsers: The browsers supported by HTML <button> Formmethod attribute are listed below:

  • Google Chrome 9.0
  • Edge 12.0
  • Internet Explorer 10.0
  • Firefox 4.0
  • Opera 15
  • Safari 


Last Updated : 20 Jul, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads