I am using jQuery-ui tooltip and tinimce 4,
the problem is when tinymce is loaded into the text box, there is a title attribute "Rich Text AreaPress ALT-F10 for toolbar..." that displays the jqueryui tooltip all the time.
I tried to remove the header using js, but nothing changed:
document.getelementbyid('message_ifr').RemoveAttribute('title');
Is there a way to remove the title from tinymce or the jqueryui hints in the text box?
EDIT:
this is tinymce code:
tinymce.init({ mode : "exact", elements : "message,notes", plugins: "advlist autolink lists link image charmap hr anchor pagebreak code fullscreen table ", toolbar: "undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image table code fullscreen", menubar: false, statusbar: false, });
and jquery-ui hint code:
$(function() { $( document ).tooltip({ content: function() { return $(this).attr('title'); }
javascript jquery-ui tinymce
ipel
source share