Open In App

HTML | <input> formaction Attribute

The HTML <input> formaction Attribute is used to specify where to send the data of the form. After submission of the form the formaction attribute called. The form data is to be sent to the server after submission of the form. It overrides the feature of the action attribute of an <form> element. 

Syntax: 



<input formaction="URL"> 

Attribute Values: It contains single value URL which is used to specify the URL of the document where the data to be sent after submission of the form. The possible value of URL are:

Example: 






<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML &lt;input&gt; formAction Attribute
    </title>
</head>
 
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
 
    <h2>
        HTML  &lt;input&gt; formAction Attribute
    </h2>
 
    <form action="#"
          method="get"
          target="_self">
       
        <input type="text"
               id="Geeks"
               name="myGeeks"
               value="geeksforgeeks"
               formTarget="_blank"
               formMethod="post"
               formAction="test.php">
        <input type="submit">
    </form>
</body>
 
</html>

Output:

  

Supported Browsers: The browsers supported by HTML | <input> formaction Attribute are listed below:


Article Tags :