When using CKEditor 4 Inline Editing on a object the CKEditor add a "Title" attribute that include a text and the object id.
e.g. In the CKEditor inline example we can see the next code:
<h2 id="inline-sampleTitle" title="Rich Text Editor, inline-sampleTitle"....>CKEditor<br>Goes Inline!</h2>
I like to remove the "title" attribute because i do not like the user to see it (my id is more complicated :) ).
Note: I was trying to remove it manually after the CKEditor create it using jQuery "removeAttr" function but this solution is not really good for me because in IE browsers the user still see it in the first time and it will remove only after the user mouse out from the object.