paste

Catch pasted input in textarea

with javascript(Jquery). Searched online, seems like it's not possible. So far I have something like: $("#textAreaId").bind('paste', function (e) { alert('pasting text!!!!'); var data = $("#taData").val(); alert(data); }); but the data is empty at this stage...is there a way to capture the pasted inpu...