This is a test
9:30 pm in Uncategorized by Drax
yes, the idea is the same but the declaration is different :
A ) to use editor_selector option :
on your header :
tinyMCE.init({
mode : “textareas”,
editor_selector : “mceEditor”,
theme : “advanced”,
theme_advanced_toolbar_location : “top”,
theme_advanced_statusbar_location : “bottom”,
theme_advanced_resizing : true
});
and on the page body :
<--this will be an editor <-- this will NOT be an editor <-- this will be an editor B ) conversely, you may use the option editor_deselector like this : tinyMCE.init({ mode : "textareas", editor_deselector : "NOTanEditor", theme : "advanced", theme_advanced_toolbar_location : "top", theme_advanced_statusbar_location : "bottom", theme_advanced_resizing : true }); and on the page bod