Knockout Quill Binding

§ Simple Example

Use the quill binding on any input[type="text"] element.

  window.view1 = {
    html_observable: ko.observable(null)
  };
  ko.applyBindings(view1, document.querySelector('#simple-example-section .result'));
  <input type='text' data-bind='quill: html_observable'>
View Source