No container

This example demonstrates running Redactor without a container surrounding the content. For instance, when you manually create a container around the editor with specific styles. In this mode, the toolbar will not be displayed, making it convenient to include a context bar instead.


Code

<!-- element -->
<textarea id="entry">...</textarea>

<!-- call -->
<script>
let app = Redactor('#entry', {
    nocontainer: true,
    context: true
});
</script>