-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
input event not firing in IE10 or IE11? #394
Comments
input
event not firing in IE10 or IE11?
It appears that the input event is supported on text inputs and textareas in IE9+, but not contenteditables. I ended up using this snippet from http://stackoverflow.com/questions/1391278/contenteditable-change-events:
which fires a change event on the contenteditable element. Then I just listen for that change event. |
work for me |
For me, the
input
is not firing on mediumedtior in IE11.According to this: https://connect.microsoft.com/IE/feedback/details/794285/ie10-11-input-event-does-not-fire-on-div-with-contenteditable-set, the input event doesn't fire on any contenteditables (not just mediumeditor) in IE10 or IE11:
I've confirmed this in my IE11 VM using the fiddle mentioned on the above page: http://jsfiddle.net/7VQxd/
But the ReadMe for this project says that the
input
event should work in IE9+. Anyone else having this issue?The text was updated successfully, but these errors were encountered: