JavaScript DHTML/Event onMethod/onBeforeCut

Материал из Web эксперт
Перейти к: навигация, поиск

"onBeforeCut" Example

    
<html>
<body>
<p class="explanations" 
   contenteditable="true" 
   onbeforecut="alert("being copied to the clipboard")"> 
     Cut and copy text to the system clipboard by pressing Ctrl+X.
</p>
</body>
</html>