form-request-submit-polyfill icon indicating copy to clipboard operation
form-request-submit-polyfill copied to clipboard

Results 4 form-request-submit-polyfill issues
Sort by recently updated
recently updated
newest added

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...