<a href="link.html" title="Titletext">
...is the code.
I need to use the title attribute because of slimbox, but I want to hide the title-text that shows up when hovering the mouse over the link.
Any ideas?
|
|
Supposing you are using an image tag in the a tag, you can just use an alternative title for the image (even a space) and that will overwrite the title of the link when you hover over it. |
|||
|
|
|
How about a nice simple:
(Better, put something actually useful in the nested title.) |
|||
|
|
|
This is really easy with jQuery
That will remove the title from any a elements of the li class menu-item - of course you can get fancy so they just hide on a mouse over :) |
|||||
|
|
In Regards to the "how about a nice simple" suggestion I've seen listed on several sites, I personally would not suggest this for two reasons.
I personally would think the best method is to keep the title attribute as it was meant to function and then use Javascript or css to somehow hide it. These methods would have no impact on screen readers, web crawlers, and visually impaired users. |
||||
|
To quote Aron Rotteveel's answer from the first dupe linked in my comment to the question (http://stackoverflow.com/questions/457366/disabling-browser-tooltips-on-links-and-abbrs) |
|||
|
|
|
I got fancy with jquery... ;) I needed this for a portfolio: title-tags for a lightbox but none on mouse-over. This worked for me, thanks for the hint!
|
|||
|
|
|
No guarantees but depending on how Slimbox works you may be able to include the title then use something like jQuery to remove it a few seconds after page load. Assuming Slimbox indexes the Title attribute and stores it somewhere after reading it in, you may be able to safely remove it after this happens. |
|||
|
|
|
Override/overlay it with an empty jQuery tooltip? |
|||
|
|
|
if you are using jquery, you could do following
(haven't tested it though) |
|||||
|
|
You don't have to use the You can simply remove the |
|||
|
|
|
Couldn't you just loop through the links in the DOM and set the title attribute to an empty string.
|
||||
|
|
|
the easiest way would be : after using your slimbox, add the following code below it:
hope it can help.. |
||||
|
|
|
jQuery solution - this should be straight forward:
|
|||
|
|
|
Using the idea from David Thomas, you can create a more elegant solution using jQuery:
|
||||
|
|