javascript - How to close all TinyMCE Inline Editors -
i using tinymce 4 in it's inline mode. @ loss how programmaticaly close windows during other operation on page. there way this?
in tinymce3 worked (and guess should work in tinymce4 too):
for (var i=tinymce.editors.length; i>=0; i--) { tinymce.execcommand('mceremovecontrol',false, tinymce.editors[i].id); };
Comments
Post a Comment