JavaScript HTML Editor

A lightweight wysiwyg JavaScript HTML editor is available with a few native features.

  1. The HTML tags is filtered on the paste action.
  2. Javascript events for easy integration
  3. Remote URL parser and snippet integrated object.
  4. Custom toolbar
  5. Integrated file and image dropzone

Examples

Basic HTML editor

<html>
<script src="https://jsuites.net/v4/jsuites.js"></script>
<link rel="stylesheet" href="https://jsuites.net/v4/jsuites.css" type="text/css" />

<div id="editor"></div>

<p><input type='button' value='Get data' onclick='alert(editor.getData())'></p>

<script>
var editor = jSuites.editor(document.getElementById('editor'), {
    allowToolbar: true,
    value: '<b>This is a basic example...</b>'
});

</script>
</html>

More examples