Skip to main content

Status Bar

These options control the status bar at the bottom of the editor, which can show element path breadcrumbs and branding.

Options

OptionTypeDefaultDescription
statusbarbooleantrueShow the status bar at the bottom of the editor. Hiding it also hides the resize handle, element path, and branding.
elementpathbooleantrueShow the element path breadcrumbs in the status bar. Displays the DOM hierarchy of the element at the current cursor position. Clicking a breadcrumb selects that element.
brandingbooleantrueShow Editor42 branding in the status bar.

Example

editor42.init({
selector: 'textarea',
statusbar: true,
elementpath: true,
branding: false
});