Answers for "can you have multiple forms with the same action html"

3

multiple form submit for different form action

<form method="POST">
<input type="submit" formaction="default_url_when_press_enter" style="visibility: hidden; display: none;">
<!-- all your inputs -->
<input><input><input>
<!-- all your inputs -->
<button formaction="action1">Action1</button>
<button formaction="action2">Action2</button>
<input type="submit" value="Default Action">
</form>
Posted by: Guest on June-03-2020

Code answers related to "can you have multiple forms with the same action html"

Browse Popular Code Answers by Language