Documentation

editor.notifySelectionChange()

Notifies the editor about any content change.

Syntax

editor.notifySelectionChange()

Example usage

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