Hi All
It\'s the first time I\'ve used Tiny Mce and I have a problem. Please Help
The editor works fine in editing but when I click submit nothing is sent from t
It is necessary to update the textareas content with the content of the editors iframe (tinymce uses an editable iframe like most rtes). In order to achieve this you need to call tinymce.get('elm1').save();
before you submit.
You can also grab the editors content using tinymce.get('elm1').getContent();
and sent this.t