I'm using jquery to listen for changes to a textarea and some text inputs. I've tried binding to keyup, click, change, and mouseup all at the same time but this still doesn't fire off when I right-click in the textarea and paste content:
$("#tweet").bind("keyup mouseup click change", function(evtObj) {
display_tweet_length();
});
Can anyone tell me the magic combination of event bindings which will make sure that I detect when the contents of a textarea has changed?