JSFiddle - React, Tailwind, and code Playground

by samc

HTML

<script src="http://www.sceditor.com/minified/jquery.sceditor.bbcode.min.js"></script>
<link rel="stylesheet" href="http://www.sceditor.com/minified/themes/default.min.css">
<input type="text" />
<textarea></textarea>
<input type="text" />

CSS

textarea {
    width: 100%;
    height: 400px;
}

JavaScript

$(function() {
    $("textarea").sceditor({
        autoUpdate: true,
        autoExpand: true,
		plugins: 'bbcode',
        emoticonsRoot: 'http://www.sceditor.com/',
        style: 'http://www.sceditor.com/minified/jquery.sceditor.default.min.css'
	});
});