Get your own copy
Don't hesitate! Just download and test it all by yourself for free!
(Requires: 3.0.2)
This option enables you to specify an id for the body of each editor instance. This id can then be used to do TinyMCE specific overrides in your content_css.
This will add the same id to all editors that gets created by the init call.
tinyMCE.init({
...
body_id : "my_id"
});
This will set specific ids on the bodies of specific editors.
tinyMCE.init({
...
body_id : "elm1=my_id,elm2=my_id2"
});
Search documentation.