I know I can just edit the code to do this but it would be nice to have an option in both PrintAlbumMenu and PrintPageMenu that will leave out the title="" tags. Or, if anyone knows of a way of overriding the title tag, that would work. It's getting in the way of my menus--for instance, in Safari 4, the hovering title popup lingers and if I mouseover it, I lose the menu. It's also just repeating what's already in the list--no new information.
Thanks!
Comments
`
$(document).ready(function () {
$(".menu a").removeAttr("title");
});
`
This removes all "title" attributes from all "a" tags in an element with the class "menu".
Thanks fretzl!! Although, I can't get this to work. Is there a particular place this needs to be? I've experimented with it but am not having any luck. Thanks, and many thanks for the great zenphoto and zenpages!
JS code like his jQuery snippet is commonly placed in the head of a page but can basically be everywhere. Of course you need to address the right CSS class/id with that script. We of course can't know that. I suggest to look at the jQuery site for general documentation.