Simple BBCode editor for your webpage or CMS. Require jQuery.
##Usage:
###Into HEAD section
<link rel="stylesheet" href="bbcodeeditor.css">###Before closing BODY section
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="bbcodeeditor.js"></script>###Configuration
<script>
$(document).ready(function(){
$("#element").bbCodeEditor({
mode: 'bbcode', // or 'html' to display html in edit window
convert: 'true' // converts textarea html contents to bbcode on plugin init
});
})
</script>