ユーザーが textarea#q に何かを入力すると、do_domething()関数が呼び出されます。ユーザーがテキストを入力する代わりに貼り付ける場合、do_something() 関数は避ける必要があります。何か案は?これは私の現在のコードです:
$('#q').keyup(function(e){
do_something();
}).bind('paste',function(event) {
//user pasted text, there is not need to do_something();
//tried both of these approaches, none worked out.
event.stopPropagation();
event.stopImmediatePropagation();
});