Home   Pricing

editor.notifySelectionChange()

Notifies the editor about any content change.

Syntax

editor.notifySelectionChange()

Example:

  1. var editor1 = new RichTextEditor("#div_editor1");    
  2. editor1.getEditable().appendChild(editor1.document.createElement("hr"));  
  3. editor1.notifySelectionChange();