I am using this for catch paste evente on a textarea :
$('textarea#id').on('paste', function (event) {
alert('paste !');
});
It work fine on the page where the texteara is but it doesnt work if textarea#id is not already on the page, if I call it in ajax (like if its inside a remote modal).