Horje
HTML formaction Attribute

Definition and Usage

The formaction attribute specifies where to send the form-data when a form is submitted. This attribute overrides the form's action attribute.

The formaction attribute is only used for inputs/buttons with type="submit".


Applies to

The formaction attribute can be used on the following elements:

Elements Attribute
<button> formaction
<input> formaction

Browser Support

The formaction attribute has the following browser support for each element:


How to add A form with two submit buttons

The first submit button submits the form data to "action_page.php", and the second submits to "action_page2.php"
index.html
Example: HTML
 <form action="/action_page.php" method="get">
  First name: <input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>
  <button type="submit">Submit</button><br>
  <button type="submit" formaction="/action_page2.php">Submit to another page</button>
</form> 

Output should be:

How to add A form with two submit buttons

How to add An HTML form with two submit buttons, with different actions

Input Example.

index.html
Example: HTML
 <form action="/action_page.php">
  First name: <input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>
  <input type="submit" value="Submit"><br>
  <input type="submit" formaction="/action_page2.php" value="Submit to another page">
</form> 

Output should be:

How to add An HTML form with two submit buttons, with different actions




html formaction attribute

Type:
Develop
Category:
Web Tutorial
Sub Category:
HTML Attribute
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference