Skip to content
.github-star { padding-left: 15px; margin-bottom: 15px; }

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>
File: 1483