JavaScript HTML Editor
A lightweight wysiwyg JavaScript HTML editor is available with a few native features.
- The HTML tags is filtered on the paste action.
- Javascript events for easy integration
- Remote URL parser and snippet integrated object.
- Custom toolbar
- Integrated file and image dropzone
Examples
Basic HTML editorData to be uploaded:
Source code
<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>