I have this setup:
tinymce.init ({
selector: '#tinymce',
theme: 'inlite',
plugins: 'image table link paste contextmenu textpattern autolink charmap media hr spellchecker',
insert_toolbar: 'quickimage quicktable charmap media',
selection_toolbar: 'bold italic | quicklink h1 h2 h3 hr blockquote',
inline: true,
});
The TinyMCE inlite theme works fine when I use it with div tag but when i switch it over to textarea tag the theme doesnt work.
This works:
<div id="tinymce">
This does not work:
<textarea id="tinymce">
I have tried several configurations but cannot seem to get it working. Can anyone help me?