How do I initialize TinyMCE on a ajax loaded textarea in 4.x?
I am upgrading to tinyMCE 4.x and I am attempting to initialize tinyMCE on a textarea loaded via AJAX. In 3.x I did something of the sort: TinyMCE - attach to divs loaded via AJAX calls but this does not seem to work in 4.x. Arquimedes de Siracusa tinymce.remove(); tinymce.init(); This works well! In TinyMCE 4.x mceRemoveControl and mceAddControl have been removed. You have to use mceRemoveEditor and mceAddEditor instead. Got it from: [Resolved] mceRemoveControl and mceAddControl in tinymce 4 Otherwise, you can reload tinymce.init({ ... }) but that should not be the way as it would be slower.