Documentation

Noneditable

Type: noneditable

Editable: false

Tags: any

A noneditable block is any tag and all tags inside it for which a class is specified in the noneditable.classname setting. By default, this is the noneditable value.

<div class="noneditable">...</div>

In the example below, all tags inside noneditable will be non-editable.

// content inside div
<div class="noneditable">
    <p>...</p>
</div>

// or block tag
<p class="noneditable">...</p>