Get your own copy
Don't hesitate! Just download and test it all by yourself for free!
// Adds an observer to the onSubmit event using tinyMCE.init
tinyMCE.init({
...
setup : function(ed) {
ed.onSubmit.add(function(ed, e) {
console.debug('Form submit:' + e.target);
});
}
});
| Name | Type | Description |
|---|---|---|
| sender | tinymce.Editor | Editor instance. |
| evt | Event | W3C DOM Event instance. |
Search documentation.