file_double_submit.html (287B)
1 <form action="PASS.html" method="POST"><input name="foo"></form> 2 <button>clicky</button> 3 4 <script> 5 document.querySelector("button") 6 .addEventListener("click", () => { 7 let f = document.querySelector("form"); 8 f.dispatchEvent(new Event("submit")); 9 f.submit(); 10 }); 11 </script>