I tried
config.title = false;
and also
CKEDITOR.on('instanceCreated', function(event) {
var editor = event.editor;
editor.on('instanceReady', function(e) {
$(e.editor.element.$).removeAttr("title");
});
});
But no luck. Titles (tooltips) are still there in the dialogues boxes! Please advice. Thanks!
Search the forum
Hi,
The question has been asked and aswered a couple of times. Try the search function in this forum.
More
http://ckeditor.com/forums/CKEditor/How-do-I-remove-the-inline-editor-tooltip
I also tested in 4.3, and this works:
config.title = false;
I am not sure if we are
I am not sure if we are referring to the same tooltip. I mean the ones inside the dialogue box. For example, when I click the link button, the link menu pop up, and there are tooltips for the confirm and cancel buttons, which I want to get rid of.