Ryan Katkov

Results 4 comments of Ryan Katkov

👍 Can we see this get merged?

After some research, IE10/11 never fire the `input` event for a contenteditable element. ``` $element.bind('input', function(e) { ... ``` listens for this particular event. See: http://connect.microsoft.com/IE/feedback/details/794285/ie10-11-input-event-does-not-fire-on-div-with-contenteditable-set

I haven't looked into what events it does fire, it requires dirty hacks: ``` function fix_onChange_editable_elements() { var tags = document.querySelectorAll('[contenteditable=true][onChange]');//(requires FF 3.1+, Safari 3.1+, IE8+) for (var i=tags.length-1; i>=0;...

We continue to experience this issue and we would like some attention on it.