Mega Code Archive

 
Categories / JavaScript DHTML / Event Onmethod
 

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>