I want to hide the button toolbar in tinymce.
How to do that?
Using tinyMCE 4 you can set the following in the tinymce init:
toolbar: false
Here is a full blown example of the init if you want a clean editor with no options:
<script type="text/javascript">
tinymce.init({
menubar: false,
statusbar: false,
toolbar: false
});
</script>