Response title
This is preview!
I have added the keyup listener to a input field (textbox) like this:
jQuery('#input_guideName').keyup(function(e) { alert('yo'); });
My problem is that the alert is triggered twice when I paste text, because CTRL+V is two key pressed.
But I really need this to be handled as one 'keyup'.
How can I solve this problem?
© 2013 jQuery Foundation
Sponsored by and others.