Submit A Form In A New Tab Using Simple HTML

Posted By Weston Ganger

I wanted to submit the form in a new tab. Turns out this is very easy using basic HTML the same way you would for a new tab link.

<pre>
<code class="language-markup">
<form action="/post" target="_blank">
</form>



Related External Links:

- [CSS Tricks - form-submission-new-window](https://css-tricks.com/snippets/html/form-submission-new-window/)

Article Topic:Software Development - HTML / CSS

Date:August 09, 2016