I have recently upgraded to tinyMCE 4 and prefer to use the jQuery version. However, in the menu bar i cannot get the "Tools" menu to show up. i have used the javascript version and it shows, but once i put the jQuery version in it disappears.
My initialization code is as follows:
$('.tinymce').tinymce({
script_url : 'tinymce/tinymce.min.js',
width : 900,
height : 500,
oninit : "setInst",
theme: "modern",
plugins: ["table paste"],
menubar: 'format edit table tools',
toolbar1: "insertfile undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist",
image_advtab: true
});