Hello,
I followed your instructions to add this element to TEXTAREA and it partially works. Indeed, the buttons for changing the colors of the words or the background do not appear on the toolbar of the editor (see screenshot). However, I see that the parameters are there.
Can you help me get these buttons to appear?
Thank you,
2 Answers
To use this feature, you need to enable color plugin by adding:
extraPlugins: ‘colorbutton,colordialog’,
You can set:
var editor = CKEDITOR.replace( el, { extraPlugins: 'colorbutton,colordialog', on: { change: function(){ jQuery(el).val(editor.getData()); } } });
Your Answer