I have a jquery token tagit plugin and I want to bind to the paste event to add items correctly.
I\'m able to bind to the paste event like so:
.b
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); });