How to get the content of a Tinymce textarea with JavaScript
I solved it with code: // Get the HTML contents of the currently active editor tinyMCE.activeEditor.getContent(); // Get the raw contents of the currently active editor tinyMCE.activeEditor.getContent({format : ‘raw’}); // Get content of a specific editor: tinyMCE.get(‘content id’).getContent() the activeEditor is current editor,but i use tinyMCE.get(‘editor1’).getContent() can not get the value of my editor, hope … Read more