eWebEditor Home >> eWebEditor Manual V11.2 >> Developer Guide >> JavaScript API

3.7.7 appendHTML

Description

Appends HTML at the end of the editor

Syntax

object.appendHTML (string html);

Parameter

The single parameter is a string containing the code you want to append.

Notes

This function will append code at the end of editor.

Example:

The following example will append code into the editor named 'myEditor':

myEditor.appendHTML ('The code I want to append');