A form with two submit buttons. The first submit button submits the form data with default target ("_self"), and the second submits the form data to a new window (target="_blank"):
![]()
The formtarget attribute is supported in Internet Explorer 10, Firefox, Opera, Chrome, and Safari.
Note: Internet Explorer 9 and earlier versions, do not support the formtarget attribute.
The formtarget attribute specifies where to display the response after submitting the form. This attribute overrides the form's target attribute.
The formtarget attribute is only used for buttons with type="submit".
The formtarget attribute is new in HTML5.
Note: Frames and framesets are not supported in HTML5. The _parent, _top and framename values are now mostly used with iframes.
| Value | Description |
|---|---|
| _blank | Loads the response in a new window/tab |
| _self | Loads the response in the same frame (this is default) |
| _parent | Loads the response in the parent frame |
| _top | Loads the response in the full body of the window |
| framename | Loads the response in a named iframe |
HTML <button> tag
Your message has been sent to W3Schools.