I'm using a keyup function on an input field and it works fine. However, if a user clicks the input box and paste in text with the mouse, then the keyup isn't fired and I got a problem.
What can I use to add something to prevent pasting or fire keyup when
the user paste?
.addEvent('keyup',function(){...});
Thanks.
