Tengo algunas áreas de texto y todas ellas están con tinyMCE.setContenido de un área de texto con tinyMCE
Me gustaría establecer el contenido del área de texto específica, pero no puedo encontrar cómo.
He tryed esto:
tinyMCE.get('title').setContent(selected_article_title);
aquí es mi área de texto:
<textarea style="width: 95%;" name="Title" id="title"></textarea>
Y aquí mi TinyMCE init:
tinyMCE.init({
// General options
mode : "specific_textareas",
theme : "advanced",
width: "100%",
plugins : "pagebreak,paste,fullscreen,visualchars",
// Theme options
theme_advanced_buttons1 : "code,|,bold,italic,underline,|,sub,sup,|,charmap,|,fullscreen,|,bullist,numlist,|,pasteword",
theme_advanced_buttons2 :"",
theme_advanced_buttons3 :"",
theme_advanced_buttons4 :"",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
valid_elements : "i,sub,sup",
invalid_elements : "p, script",
editor_deselector : "mceOthers"
});
no sé por qué esto no es trabajando, estoy usando el ejemplo del sitio web tinyMCE http://www.tinymce.com/wiki.php/API3:method.tinymce.Editor.setContent
Gracias @Thariama, pero esto no funciona para mí. Mi área de texto todavía está vacía. –