Content
5 Answers Active Oldest Vo You can bind the ‘input’ event to the textbox. This would fire every time the input changes, so when you paste something (even with right click), delete and type anything. 790 (‘myTextbox").on (‘input’, function() do something ); If you use the change handler, this will only fire after the user deselects the input box, which may not be what you want. There is an example of both here: http:jsfiddle.net6bSX6 Share Improve this answer Follow answered Oct 9 ’12 at 10:21 Timm 11.9k 4 0 30 42 197 This does not work in the Nintendo 3DS browser. The change is not detected even though the input field contains the new string. – Johan Jul 3 ’13 at 11:30