DONT ADD ANYTHING HERE!

  1. input elements of type submit are rendered as buttons
  2. When the click event occurs (typically because the user clicked the button), the user agent attempts to submit the form to the server
  3. value
    1. An input type="submit" element's value attribute contains a string which is displayed as the button's label
    2. Buttons do not have a true value otherwise
    3. The value provides the accessible description for the button
    4. If you don't specify a value, the button will have a default label, chosen by the user agent
  4. formaction
    1. A string indicating the URL to which to submit the data
  5. formenctype
    1. A string that identifies the encoding method to use when submitting the form data to the server
    2. There are three permitted values
      1. application/x-www-form-urlencoded
      2. multipart/form-data
      3. text/plain
  6. formmethod
    1. A string indicating the HTTP method to use when submitting the form's data
    2. Permitted values are:
      1. get
      2. post
      3. dialog
  7. formtarget
    1. A string which specifies a name or keyword that indicates where to display the response received after submitting the form
    2. The string must be
      1. A valid browser context
      2. _self
      3. _blank
      4. _parent
      5. _top

Example (type=submit)

HTML

<form>
    <div>
        <label for="example">Let's submit some text</label>
        <input id="example" type="text" name="text" />
    </div>
    <div>
        <input type="submit" value="Send" />
    </div>
</form> 

Browser


References