How to use the formtarget attribute to submit form to a new tab in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>

<form action="save.php" method="get">
Company name: <br / >
<input type="text" name="companyname">
<br /><br />
<input type="submit" formtarget="_blank" value="Submit to a new tab">

</form>

</body>
</html>

 



answered Jan 5, 2019 by avibootz
...