'onBeforeEditFocus' Example : onBeforeEditFocus « Event Handlers Reference « JavaScript Reference

'onBeforeEditFocus' Example

    
<html>
<body>
   <p contenteditable="true" 
      onbeforeeditfocus="alert('The text is prepared for editing')">
      Click in this text and type some text.
   </p>
</body>
</html>

    
      
      








Related examples in the same category

1.'onBeforeEditFocus' Syntax and Note
2.'onBeforeEditFocus' Properties
3.'onBeforeEditFocus' is applied to