0

Right now it sets it to Rich text editor, element_id. Is there any way to change that?

Bogdan
  • 1,869
  • 6
  • 24
  • 53

2 Answers2

3

In ckeditor.js search for the following string:

a.changeAttr("title",c)

And justs set it to an empty string if you want:

a.changeAttr("title",'');

Keep In mind, you'll lose this during an update, but this is the only way until they add it to their editable configurations. Only use this if you don't mind losing some a11y.

Nick Zinger
  • 1,174
  • 1
  • 12
  • 28
0

This title is set in CKEDITOR.editable. You can change it by:

But when you'll modify it, remember that this title is there to provide a11y.

Reinmar
  • 21,729
  • 4
  • 67
  • 78
  • According to http://stackoverflow.com/a/14747609/250294 this feature will be possible when http://dev.ckeditor.com/ticket/10042 is fixed. – AlfonsoML Apr 03 '13 at 14:00