tinymcetinymce-4

TinyMCE: How do I prevent `<br data-mce-bogus="1">` text in editor?


I have a page with several TinyMCE (v4) editors, which all work great ... until I try and add:

inline: true

to their configuration. When I do that the inline-ing part works great (the toolbar is gone, then appears when I focus the editor), but for some strange reason the editor stops working at that point. Inside the editor I see:

<br data-mce-bogus="1">

but I can't edit that text, or add new text, or do anything at all really with the editor.

I can make the editor work again if I remove inline: true, but I really want the inline effect. Does anyone have any idea how I can get inline without breaking my editors?


Solution

  • I recently had this problem, inline: true would not work with a textarea. I change mine to a div and it now works as expected.