Open In App

HTML | <input> formtarget Attribute

Last Updated : 30 Mar, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML <input> formtarget attribute is used to specify the name or a keyword which indicates where to display the response after submitting the form. This attribute overrides the target attribute of <form> element. 

Syntax:

<input formtarget="_blank|_self|_parent|_top|framename">

Attribute Values:

  • _blank: The input response is display in a new window.
  • _self: The input response is display in the same frame. it is the default value.
  • _parent: The input response is display in the parent frameset.
  • _top: The input response is display in the full body of the window.
  • framename: The input response is display in the named frame.

Example: 

html
<!DOCTYPE html> 
<html>
     
<head>
    <title>
        HTML input formtarget Attribute
    </title>
</head>

<body> 
    <center> 
        <h1 style="color:green;"> 
            GeeksforGeeks 
        </h1> 
        
        <h2> 
            HTML &lt;input&gt; formtarget Attribute
        </h2> 
        
        <form action="#"> 
            Username: 
            <input type="text" name="username"> 
            
            <br><br>
            
            Password: 
            <input type="text" name="password"> 
            
            <br><br> 
            
            <input type="submit" value="Submit" formtarget="_blank"> 
        </form> 
    </center> 
</body> 

</html> 

Output:

  

Supported Browsers: The browsers supported by HTML <input> formtarget attribute are listed below:

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

Next Article

Similar Reads