freqdec / datePicker

An attempt at writing a flexible, framework free, feature-rich and accessible datepicker
http://freqdec.github.io/datePicker/
MIT License
171 stars 56 forks source link

IE11 Multiple Date-Pickers #66

Closed skerione closed 9 years ago

skerione commented 9 years ago

Are there any know issues with IE11 and multiple date-pickers on a form? The last selected date-picker will not work (code is not generated for the last selected href, so the date-picker does not display) when selected, unless it's a 1. These all work perfectly in ie9 and ff.

For example, I have a form with 3 date-pickers. All 3 date-pickers only work when the first date-picker is selected last.

Works: 3,2,1 2,3,1

Does not work (the code is not generated for the href of the last selection): 1,2,3 1,3,2 2,1,3 3,1,2

skerione commented 9 years ago

Resolved by replacing 'transition':'transitionEnd' with 'transition':'transitionend'