JavaScript DHTML/Event onMethod/onBeforePaste
"onBeforePaste" Example
<html>
<body>
<p>Copy and paste some text into the textarea below.</p>
<form>
<textarea cols="60"
onbeforepaste="alert("The text is on the verge of being pasted")">
</textarea>
</form>
</body>
</html>