JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://www.sceditor.com/minified/themes/default.min.css">
<script src="http://www.sceditor.com/minified/jquery.sceditor.bbcode.min.js"></script>
<textarea style="width:600px; height:300px"></textarea>
JavaScript
$('textarea').sceditor({
plugins: 'bbcode',
width: '100%',
toolbar: "bold,italic,underline,quote,bulletlist,emoticon,color,youtube|removeformat",
enablePasteFiltering: true,
bbcodeTrim:true,
emoticonsRoot: 'http://www.sceditor.com/',
style: 'http://www.sceditor.com/minified/jquery.sceditor.default.min.css'
});
var bbcodes = ['s', 'sub', 'sup', 'font', 'size', 'list', 'ol', '*','table', 'tr', 'th', 'td', 'horizontalrule', 'img', 'url', 'email','code', 'left', 'center', 'right', 'justify', 'rtl', 'ltr', 'hr'];
$.each(bbcodes, function(idx, bbcode) { $.sceditorBBCodePlugin.bbcode.remove(bbcode);});
$('body').append($('<div>').text('Browser: ' + navigator.userAgent));