理由はわかりませんが、突然 TinyMCE が表示されなくなりました。ある程度効いています。テキストエリアは非表示になっていますが、TinyMCE インターフェースは表示されていません。jQuery/Javascript エラーは発生しません。何が起こっているのか、それを理解しようとする方法がわかりません。
それは単なる標準的なインストールです。jGrowl と Selectbox も持っていて、最近それらに変更を加えました。それらが原因かも?
それらが問題を引き起こしていると聞いたことがありますか??
<script src="js/jquery.min.js" type="text/javascript"></script>
<!-- Load TinyMCE -->
<script type="text/javascript" src="js/tiny_mce/jquery.tinymce.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.tinymce').tinymce({
// Location of TinyMCE script
script_url : 'js/tiny_mce/tiny_mce.js',
// General options
theme : "advanced",
plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,xhtmlxtras,template,advlist",
// Theme options
theme_advanced_buttons1 : "fullscreen,code,preview,print,cleanup,|,undo,redo,cut,copy,paste,pastetext,pasteword,|,search,replace,|,link,unlink,anchor,image,media,template",
theme_advanced_buttons2 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,outdent,indent,blockquote,|,fontsizeselectbullist,numlist",
theme_advanced_buttons3 : "tablecontrols,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,advhr,|,|,ltr,rtl,|,insertlayer,moveforward,movebackward,absolute",
theme_advanced_buttons4 : "styleselect,formatselect,fontselect,fontsizeselect,|,hr,|,forecolor,backcolor,|,styleprops,attribs",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true
});
});
</script>
<!-- /TinyMCE --></head>
<body>
<textarea name='body_content' rows="15" cols="80" class="tinymce" style='height: 400px; width: 75%;'>
</textarea>
</body>