cagartner
8/14/2013 - 5:29 PM

Pegar dados do editor TinyMCE com javascript From http://stackoverflow.com/questions/6541782/getting-the-value-from-a-tinymce-textarea

// 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()