-
Notifications
You must be signed in to change notification settings - Fork 49.6k
Closed
Labels
Status: UnconfirmedA potential issue that we haven't yet confirmed as a bugA potential issue that we haven't yet confirmed as a bug
Description
Currently the synthetic event fired from select element's onChange prop has no selectedOptions property in IE11 (most likely earlier versions as well). event.nativeEvent.srcElement.value appears to work in all browsers.
This works in Chrome:
event.target.selectedOptions[0].value.
In IE:
event.target.selectedOptions === undefined;
Can this be polyfilled to be consistent across browsers or is the assumption developers should use event.nativeEvent.srcElement.value?
Metadata
Metadata
Assignees
Labels
Status: UnconfirmedA potential issue that we haven't yet confirmed as a bugA potential issue that we haven't yet confirmed as a bug