JavaScript DHTML/Event onMethod/onPaste

Материал из Web эксперт
Версия от 10:20, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"onPaste" Example

   <source lang="html4strict">
   

<html> <body>

Copy and paste text into the textarea to triger the onpaste event

<textarea cols=60 onpaste="alert("The text is being pasted")"> </textarea> </body> </html>


     </source>