Home   Pricing

editor.getText()

Retrieves the string contents of the editor. Non-string content are omitted.

Syntax

editor.getText()

Return value

Type: String

The string contents of the editor in plain text format.

Example:

  1. var editor1 = new RichTextEditor("#div_editor1");      
  2.   
  3. editor1.setHTMLCode("<p><b>Hello</b> World</p><p>Click the button below to show this text code</p>");      
  4.   
  5. function btnShowText() {      
  6.     alert(editor1.getText())      
  7. }