JavaScript DHTML/Event onMethod/onBeforePaste — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:20, 26 мая 2010
"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>