I want to detect whenever a textbox\'s content has changed. I can use the keyup method, but that will also detect keystrokes which do not generate letters, like the arrow ke
do you consider using change event ?
$("#myTextBox").change(function() { alert("content changed"); });