Days
Hours
Minutes
Seconds
x

Froala Editor v4.2.0 is Here LEARN MORE

Skip to content

API

Get Edited HTML

You can use at any time in your code the following snippet to get the content inside the Froala WYSIWYG HTML Editor.

Try it yourself:

Edit in JSFiddle

JAVASCRIPT

<script>
  let editor = new FroalaEditor('div#froala-editor', {}, function () {
    console.log(editor.html.get())
  });
</script>