Get your own copy
Don't hesitate! Just download and test it all by yourself for free!
// Loads a plugin from an external URL
tinymce.PluginManager.load('myplugin', '/some/dir/someplugin/editor_plugin.js');
// Initialize TinyMCE
tinyMCE.init({
...
plugins : '-myplugin' // Don't try to load it again
});
| Name | Type | Description |
|---|---|---|
| n | String | Short name of the add-on that gets loaded. |
| u | String | URL to the add-on that will get loaded. |
| cb | function | Optional callback to execute ones the add-on is loaded. |
| s | Object | Optional scope to execute the callback in. |