Jodit is the best WYSIWYG editor
Jodit is awesome and usefully wysiwyg editor with filebrowser. Documentation
How use
Download last release or install
by bower
bower install jodit
by npm
npm install jodit
After include a few file in your page
<script type="text/javascript" src="jquery.min.js"></script>
<link type="text/css" rel="stylesheet" href="jquery.jodit.min.css">
<script type="text/javascript" src="jquery.jodit.min.js"></script>
And some <textarea>
element
<textarea id="editor" name="editor"></textarea>
After this, you can init Jodit plugin
$(function () {
$('#editor').jodit();
});
Result
![ScreenShot](https://raw.github.com/xdan/jodit/master/screen.jpg)
Use FileBrowser
For using filebrowser you need use some serverside script. For example Official PHP connector
Links