Mega Code Archive

 
Categories / JavaScript Reference / Event Handlers Reference
 

OnBeforePaste Example

<html> <body>    <p>Copy this text and paste it into the textarea element below.</p>    <form>    <textarea cols="60"               onbeforepaste="alert('The text is on the verge of being pasted')">    </textarea>    </form> </body> </html>