Changes between Initial Version and Version 1 of Ticket #35832, comment 6
- Timestamp:
- 02/21/2016 11:42:11 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35832, comment 6
initial v1 1 Yes, would be g oodto standardize these events. According to caniuse.com `input` works quite well except in IE8. If support there is crucial we can fall back to using `change`. Perhaps something like:1 Yes, would be great to standardize these events. According to caniuse.com `input` works quite well except in IE8. If support there is crucial we can fall back to using `change`. Perhaps something like: 2 2 {{{ 3 3 var event = ( 'oninput' in document ) ? 'input' : 'change';