How can I disable the title on the content area?
I have a title said: Rich text editor with ID...
I'm using the div mode.
As you can see in this demo, there is the title also:
http://demos.telerik.com/aspnet-ajax/editor/examples/contentareamodediv/defaultcs.aspx
2 Answers, 1 is accepted
0
Accepted
Rumen
Telerik team
answered on 30 Jan 2013, 05:07 PM
Hi,
This tooltip is enabled by default for the screen readers. The same title attribute is also applied to the iframe content area (ContentAreaMode="iframe"), but the browser does not display it.
You can hide the title attribute and the tooltip using the following code:
var contentAreaEl = editor.get_contentAreaElement();
contentAreaEl.removeAttribute("title");
}
</script>
Kind regards,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.