Download
User Rating: 3.2/5 ( 5 votes)
Quill is a free, open source WYSIWYG editor built for the modern web. With its extensible architecture and a expressive API you can completely customize it to fulfill your needs. Some built in features include:
-
Fast and lightweight
-
Semantic markup
-
Standardized HTML between browsers
-
Cross browser support including Chrome, Firefox, Safari, and IE 9+
Source: quilljs.com
1. INCLUDE JS FILES
<!-- Include the Quill library -->
<script src="http://quilljs.com/js/quill.js"></script>
2. HTML
<!-- Create the toolbar container -->
<div id="toolbar">
<button class="sc-bold">Bold</button>
<button class="sc-italic">Italic</button>
</div>
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <b>bold</b> text</p>
<p><br></p>
</div>
3. JAVASCRIPT
var editor = new Quill('#editor');
editor.addModule('toolbar', { container: '#toolbar' });
More information at quilljs.com