See examples in JavaScriptJavaScript
See examples in JavaScriptJavaScript
See examples in ReactReact
See examples in VueJSVueJS
v4
v5
v4

Richtext Editor

When an URL is detected in the HTML editor, it automatically loads the information about the URL. For security reasons, you should have a middleware in your backend to parse the remote link information.

Paste an URL from a video on youtube or a LINK from an external website.

undo
redo
format_bold
format_italic
format_underline
format_list_bulleted
format_list_numbered
format_indent_increase
format_indent_decrease
<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>

<script>
jSuites.editor(document.getElementById('editor'), {
    parseURL: true,
    // Website parser is to read websites and images from cross domain
    remoteParser: '/docs/parser?url=',
    // Allowtoolbar
    allowToolbar:true,
});
</script>
</html>