Aha - Firefox and submit event
If you dispatch a submit event, firefox will ignore all preventDefault, therefore you need to add `cancelable: true`
form.dispatchEvent(new CustomEvent("submit", {
cancelable: true
}))
Aha - Firefox and submit event
If you dispatch a submit event, firefox will ignore all preventDefault, therefore you need to add `cancelable: true`
form.dispatchEvent(new CustomEvent("submit", {
cancelable: true
}))