Search code examples
wysiwygsummernote

Summernote WYSIWYG : set code view as default view


I can't find anything about this on the web. Is there a way to set the default view of Summernote (WYSIWYG jQuery text editor) to be the code/html view. I want to see directly the HTML code when landing on the form page.

Thank you


Solution

  • You can simulate a click on the codeview button (after summernote initialization), it works for me :

    $('.summernote').summernote({
         oninit: function() {
             $("div.note-editor button[data-event='codeview']").click();
         }
    });