In source mode, the textarea has a title attribute that looks like "Rich Text Editor, [editorname]".
Hovering over the textarea displays this title as a tooltip in some browsers. This is annoying.
I can remove the "Rich Text Editor" part of the title in the language JS, but it still shows as ", [editorname]".
How can I move the whole title attribute or set it to blank?
On Mode event remove the the title attribute. :)
On Mode event remove the title attribute. :)
CKEDITOR.on("mode" , function(e){
if(e.editor.mode =="source"){
jQuery(e.editor.container.$).find(".cke_source").removeAttr("title")
}
});
On Mode event remove the title attribute. :)
On Mode event remove the title attribute. :)
CKEDITOR.on("mode" , function(e){
if(e.editor.mode =="source"){
jQuery(e.editor.container.$).find(".cke_source").removeAttr("title")
}
});