Home   Pricing

editor.attachEvent()

Attaches an event handler that is executed.

Syntax

editor.attachEvent(eventName,eventHandler)

eventName

Type: String

Specifies the name of the event to be called.

eventHandler

Type: function

A function to execute when the event is triggered.

Example:

  1. <script>  
  2. editor1.attachEvent("exec_command_newdoc", function (state, cmd, value) {  
  3.     state.returnValue = true;//handled, don't execute default action  
  4.     this.setHTMLCode("<p>New Doc...</p>");  
  5. });  
  6. </script>  

Related Links

detachEvent

Event change

Event selectionchange

Event exec_command