Examples

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:

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

editor.detachEvent()

Removes the specified event handler that was registered earlier with the attachEvent method.

Syntax

editor.detachEvent(eventName,eventHandler)

eventName

Type: String

specifies the name of the event that is listened by the event handler.

eventHandler

Type: function

Reference to the event handler function to remove.