-
Notifications
You must be signed in to change notification settings - Fork 46.9k
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
Change event does not fire in IE and Edge under certain circumstances #4672
Comments
Chrome and Edge 15 (insider preview) seem to both log |
Looks like this is still a problem, so I thought I'd reproduce it on CodePen so that it could be opened in IE11: https://codepen.io/nhunzaker/pen/OgrRgm The change event never gets a chance to fire because the dropdown closes |
|
@jasonwilliams We should confirm IE11, but I wonder if we can close this out and focus on the rendering/expansion issue separately. |
@nhunzaker |
Sounds good. I made a quick write up (#13212). Travel and bandwidth issues make it hard for me to look much into this, but we can at least start to talk about it there. Thanks everyone for weighing in! |
I have put together this simple example to demonstrate the issue.
The problem is happening on
select
elements. If there are any mouse event listeners attached that would trigger a render, theonChange
handler never gets called.It looks like unlike other browsers, IE and Edge trigger mouse events on the
select
element when clicking on the options, but that should not prevent thechange
event from triggering.The text was updated successfully, but these errors were encountered: