TinyMCE:Configuration/setup
From Moxiecode Documentation Wiki
[edit]
Option: setup
(Requires: 3.0)
This option enables you to add events to editor instances before they get rendered.
[edit]
Example of usage of the setup option:
tinyMCE.init({
...
setup : function(ed) {
ed.onClick.add(function(ed, evt) {
ed.selection.select(evt.target);
});
}
});
