javascriptquill

How do I retrieve the contents of a Quill text editor


I am using the quill text editor in a javascript app and I need to retrieve the contents of the text editor as a string with the HTML included but the docs are a little sparse on this subject.


Solution

  • Quite simply by accessing the editor's innerHTML:

    var quill = new Quill('#editor', {
        theme: 'snow'
    });
    // ....
    var editor_content = quill.container.innerHTML // or quill.container.firstChild.innerHTML could also work
    

    Hope this helps!