IE11 uses onChange instead of onInput for <input type='range'>
elements.
React does not call either of these in IE11.
The onInput
works on FF, Chrome, and Edge, so that's OK.
Following the rabbit hole downwards leads here and here, which suggest using onMouseUp
or onClick
, but I haven't gotten this working either.
I've tried various listener combinations to no avail. I even tried this (which didn't work either, of course). Does someone have a workaround for this?