You probably knew that you could force a link into opening a new tab or window with the target="_blank" attribute (deprecated, but universally still supported).
But you can use the same exact attribute on forms to get the same result:
source - https://css-tricks.com/snippets/html/form-submission-new-window/
JavaScript:
[url='#']link[/url]
But you can use the same exact attribute on forms to get the same result:
JavaScript:
<form action="x.php" method="post" target="_blank">
...
</form>
source - https://css-tricks.com/snippets/html/form-submission-new-window/