form-request-submit-polyfill
form-request-submit-polyfill copied to clipboard
Hi @javan 👋🏻, I found this while working with `activestorage/ujs.js`. I thought it's worth opening an issue here because the code works when there's native support for `form.requestSubmit` . Specifically,...
It is not directly related to this polyfill but it is better to know an issue on Safari that breaks this. Currently, there is a bug for the submitter attribute...
we ran in an issue where we use requestSubmit on a form that we're showing in a modal Using a click event listener and checking if the click was outside...
I found that `submitter.click()` does not work in Safari in iOS. I replaced it with `this.dispatchEvent(new Event('submit'));` to get it working. Not quite sure if this is only a bug...