EDDYMENS

Quill.JS: How To Get HTML Content

To get the HTML from Quill JS use quill.root.innerHTML.

Example

01: var quill = new Quill('#el', { 02: theme: 'snow' 03: }); 04: 05: console.log(quill.root.innerHTML)

[Back to table of content]