SF rendering description as menu title
Is this supposed to be like this or have I made something strange.
I my menu the page description gets rendered as title tag.
www.wesage.ch/home
Regards Markus
That's how it should be...I think that's probably desirable for most people, especially with large sites. Sure it generates a bit more markup, but it's valid markup as it describes the links.
You should be able to kill with with jQuery though
//Set the titles to nothing
$(
".RadMenu a"
).attr(
"title"
,
""
);
//OR
//Just remove the titles
$(
".RadMenu a"
).removeAttr(
"title"
);
@Steve
Thank's for the feedback and for the solution to remove the title tags.
@Telerik
Was this like this on all 4.x versions or is this a new feature, behavior?
Markus
@Steve I tried using putting this code into my site and it doesn't do anything.
I ended up solving the problem by using
$("document").ready(function()
@Seth
The only reason why it wouldn't work is that jQuery isn't loaded (or loaded yet)
Just to check also...It's inside <script type="text/javascript"></script> or you used the javascript drag\drop widget right?
Try this instead
//Set the titles to nothing
$telerik.$(
".RadMenu a"
).attr(
"title"
,
""
);
//OR
//Just remove the titles
$telerik.$(
".RadMenu a"
).removeAttr(
"title"
);