- Getting Started
- Browser Support
- Languages Support
- Shortcuts
- Activation
- Examples
- Customize the Editor
- Use-cases
- Plugins
- APIs
- Development Frameworks
- Server Integrations
- Server SDKs
- Migration Guides
- Changelog
API
Live Content Preview
This example allows you to see when the contentChanged event is triggered and how the rich text editor's content appears outside the editable area.
Try it yourself:
HTML
<div id="froala-editor">
<p>Start typing and you can preview the content of the WYSIWYG HTML editor as you type below the editing box.</p>
</div>
<br/>
<div id="preview" class="fr-view">
<p>Start typing and you can preview the content of the WYSIWYG HTML editor as you type below the editing box.</p>
</div>
JAVASCRIPT
<script>
$(function() {
new FroalaEditor('div#froala-editor', {
events: {
contentChanged: function () {
$('#preview').html(this.html.get());
}
}
})
});
</script>