There is a contenteditable div as a textarea in my html page:
<div id="txt" contenteditable="true"></div>
I detect the user's input through jquery "input paste"
$('#txt').on('input paste',function(event){
alert("ok");
});
It works fine in chrome, but not working in IE. Could anyone tell me what happened? Thanks~~