i have an array of content then how we get content of tiny mce textarea in javascript

link|improve this question

57% accept rate
feedback

5 Answers

up vote 0 down vote accepted

lets say your mce textarea instance is:

<textarea id="editor1" ....></textarea>

then you get the content as follows:

var content =  tinyMCE.getContent('editor1');

if you mean you have multiple instances of mce editor on one page and you want to get content then try this approach:

var inst, contents = new Object();
for (inst in tinyMCE.editors) {
    if (tinyMCE.editors[inst].getContent)
        contents[inst] = tinyMCE.editors[inst].getContent();
}

the above code adds each editor content into an array

link|improve this answer
feedback

I solved it with code:

tinyMCE.activeEditor.getContent()

the activeEditor is current editor,but i use tinyMCE.get('editor1').getContent() can not get the value of my editor, hope it can help you

my home page is 机器鸟

link|improve this answer
feedback

I had the same problem. I have solved using this code:

tinyMCE.get('editor1').getContent();

Source: spocke is the author

link|improve this answer
feedback

I would use jquery for a job like this.

var text = $('textarea#tinyTextArea').val();

You can even link that to an event like so:

$('input#formButton').click(function() {
    var text = $('textarea#tinyTextArea').val();
});
link|improve this answer
feedback

You may use:

tinymce.get(editorid).getContent();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.