Open jtstothard opened 5 months ago
Currently, the example shown for auto form submission can cause the page to reload as the form onsubmit handler isn't called by form.submit see MDN. To call the form onsubmit you need to use form.requestSubmit
onsubmit
form.submit
form.requestSubmit
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Currently, the example shown for auto form submission can cause the page to reload as the form
onsubmit
handler isn't called byform.submit
see MDN. To call the formonsubmit
you need to useform.requestSubmit