-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onInput for select's not firing on Edge #158
Comments
I just ran into this same problem. I managed to work around it by using elm-community/html-extras, which exposes Edit: Note @pd-andy's comment below. |
There is a subtle difference between
|
Great clarification. In my case it doesn't matter, so I mostly wanted to leave a note for anyone else having this problem (and possibly future me 😄). But I'll edit my first comment so it's clear that it's not a replacement, just a workaround. Also, if I understand this correctly, this is actually a bug in Edge, not in Elm. |
(originally filed at elm/html#198)
The
onInput
event isn't firing for the Edge browser on Windows 10 (using a VM from Microsoft). The SSCCE works as expected on Firefox (nigthly) and Chrome (latest).Microsoft Edge 44.17763.1.10 (aka 18)
Microsoft EdgeHTML 18.17763
SSCCE
Change the select option and see if the model is updated.
Ellie
@pd-andy found 2 related issues:
The second links to a JSFiddle [1] illustrating that it doesn't work with
oninput
, but if you change it toonchange
, it does.[1]
The text was updated successfully, but these errors were encountered: