SyntaxFix
Write A Post
Hire A Developer
Questions
Another approach: That input event will catch also the paste event.
input
paste
$('textarea').bind('input', function () { setTimeout(function () { console.log('input event handled including paste event'); }, 0); });